- 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/GraphicsManager.h
r10845 r10990 71 71 72 72 //! Leave empty and use cleanup() instead 73 ~GraphicsManager() {}73 ~GraphicsManager() = default; 74 74 /// Destructor that also executes when object fails to construct 75 75 void destroy(); … … 102 102 103 103 private: 104 GraphicsManager( GraphicsManager&); // don't mess with singletons104 GraphicsManager(const GraphicsManager&) = delete; 105 105 106 106 // OGRE initialisation
Note: See TracChangeset
for help on using the changeset viewer.