From cf4b86b99a91c81cc649f0f9ec3d3f4316df383c Mon Sep 17 00:00:00 2001 From: LoudSnorer Date: Sat, 18 Feb 2023 08:17:26 -0500 Subject: [PATCH] obsolete Copy Assignment - need to have a destructor defined. --- oscar/SleepLib/common.h | 1 + oscar/SleepLib/loader_plugins/resmed_EDFinfo.h | 1 + oscar/SleepLib/machine_common.h | 1 + oscar/SleepLib/schema.h | 1 + 4 files changed, 4 insertions(+) diff --git a/oscar/SleepLib/common.h b/oscar/SleepLib/common.h index cd639b8d..a3ce885b 100644 --- a/oscar/SleepLib/common.h +++ b/oscar/SleepLib/common.h @@ -68,6 +68,7 @@ struct ValueCount { :value(val), count(cnt), p(pp) {} ValueCount(const ValueCount ©) = default; + ~ValueCount() {}; EventDataType value; qint64 count; double p; diff --git a/oscar/SleepLib/loader_plugins/resmed_EDFinfo.h b/oscar/SleepLib/loader_plugins/resmed_EDFinfo.h index b8774b3e..b17db7cc 100644 --- a/oscar/SleepLib/loader_plugins/resmed_EDFinfo.h +++ b/oscar/SleepLib/loader_plugins/resmed_EDFinfo.h @@ -151,6 +151,7 @@ public: } STRRecord(const STRRecord & /*copy*/) = default; + ~STRRecord() {}; // required to get rid of warning // All the data members diff --git a/oscar/SleepLib/machine_common.h b/oscar/SleepLib/machine_common.h index 4abc8234..f71278ed 100644 --- a/oscar/SleepLib/machine_common.h +++ b/oscar/SleepLib/machine_common.h @@ -112,6 +112,7 @@ enum PRTimeModes { //:short struct MachineInfo { MachineInfo() { type = MT_UNKNOWN; version = 0; cap=0; } MachineInfo(const MachineInfo & /*copy*/) = default; + ~MachineInfo() {}; MachineInfo(MachineType type, quint32 cap, QString loadername, QString brand, QString model, QString modelnumber, QString serial, QString series, QDateTime lastimported, int version, QDate purgeDate = QDate()) : type(type), cap(cap), loadername(loadername), brand(brand), model(model), modelnumber(modelnumber), serial(serial), series(series), lastimported(lastimported), version(version), purgeDate(purgeDate) {} diff --git a/oscar/SleepLib/schema.h b/oscar/SleepLib/schema.h index cf931c83..6a6d0ad4 100644 --- a/oscar/SleepLib/schema.h +++ b/oscar/SleepLib/schema.h @@ -31,6 +31,7 @@ public: ChannelCalc(const ChannelCalc & /*copy*/) = default; ChannelCalc(ChannelID code, ChannelCalcType type, QColor color, bool enabled): code(code), type(type), color(color), enabled(enabled) {} + ~ChannelCalc() {}; QString label();