summaryrefslogtreecommitdiff
blob: 760a09fbf2c66caae44078adf2c7ab2341255df5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--- a/Interface.h
+++ b/Interface.h
@@ -57,7 +57,11 @@
 
 	InterfaceData & operator=(InterfaceData & rInterfaceData);
 	InterfaceData operator-(InterfaceData & rInterfaceData);
	
+#if __cplusplus >= 201103L
+	InterfaceData & operator=(InterfaceData && rInterfaceData) = default;
+	InterfaceData(const InterfaceData&) = default;
+#endif
 private:
 
 	unsigned long long m_ullReceived[eTotalTypes];