Changeset 10990 for code/branches/cpp11_v2/src/libraries/core/Core.h
- Timestamp:
- Dec 29, 2015, 4:47:42 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/cpp11_v2/src/libraries/core/Core.h
r10817 r10990 73 73 74 74 /// Leave empty and use destroy() instead 75 ~Core() {}75 ~Core() = default; 76 76 /// Destructor that also executes when the object fails to construct 77 77 void destroy(); … … 92 92 93 93 private: 94 Core(const Core&) ; //!< Don't use (undefined symbol)94 Core(const Core&) = delete; 95 95 96 96 void setThreadAffinity(int limitToCPU);
Note: See TracChangeset
for help on using the changeset viewer.