Added default copy operators as implicit default is deprecated

This commit is contained in:
harre 2020-09-13 01:10:03 +02:00
parent 036117d41d
commit d54e8b2e11
4 changed files with 6 additions and 0 deletions

View File

@ -277,6 +277,8 @@ struct SelectionHistoryItem {
}
quint64 minx;
quint64 maxx;
SelectionHistoryItem& operator=(const SelectionHistoryItem& other) = default;
};
class MyDockWindow:public QMainWindow

View File

@ -53,6 +53,8 @@ public:
return value;
}
DottedLine& operator=(const DottedLine& other) = default;
ChannelID code;
ChannelCalcType type;
EventDataType value;

View File

@ -42,6 +42,7 @@ public:
end = copy.end;
status = copy.status;
}
SessionSlice& operator=(const SessionSlice& other) = default;
SessionSlice(qint64 start, qint64 end, SliceStatus status):start(start), end(end), status(status) {}
qint64 start;

View File

@ -128,6 +128,7 @@ public:
dates = copy.dates;
highlight = copy.highlight;
}
RXItem& operator=(const RXItem& other) = default;
inline quint64 count(ChannelID id) const {
QHash<ChannelID, quint64>::const_iterator it = s_count.find(id);
if (it == s_count.end()) return 0;