blob: 96402cb71b8e3f9ba188dcd50c99364acf10050f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
--- a/Interface.h
+++ b/Interface.h
@@ -57,7 +57,8 @@
InterfaceData & operator=(InterfaceData & rInterfaceData);
InterfaceData operator-(InterfaceData & rInterfaceData);
-
+ InterfaceData & operator=(InterfaceData && rInterfaceData) = default;
+ InterfaceData(const InterfaceData&) = default;
private:
unsigned long long m_ullReceived[eTotalTypes];
|