diff options
author | Joe George <joe@zeroc.com> | 2021-03-29 10:01:10 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-29 10:01:10 -0400 |
commit | c095b7f9c123e1b07bf3844e7aaad9bb1a56d143 (patch) | |
tree | b31a58b033e02a10f47279985f59247839efdd65 /cpp/include/Ice/Object.h | |
parent | Fix whitespace (diff) | |
download | ice-c095b7f9c123e1b07bf3844e7aaad9bb1a56d143.tar.bz2 ice-c095b7f9c123e1b07bf3844e7aaad9bb1a56d143.tar.xz ice-c095b7f9c123e1b07bf3844e7aaad9bb1a56d143.zip |
Support for building C++98 with a C++11 compiler (#1267)
Fixes #1266
Diffstat (limited to 'cpp/include/Ice/Object.h')
-rw-r--r-- | cpp/include/Ice/Object.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cpp/include/Ice/Object.h b/cpp/include/Ice/Object.h index f6a8bebb77c..027e5ae5b90 100644 --- a/cpp/include/Ice/Object.h +++ b/cpp/include/Ice/Object.h @@ -329,6 +329,10 @@ public: protected: Object() {} // This class is abstract. +#ifdef ICE_CPP11_COMPILER + Object(const Object&) = default; + Object& operator=(const Object&) = default; +#endif virtual ~Object() {} protected: |