diff options
Diffstat (limited to 'src/objdef.h')
-rw-r--r-- | src/objdef.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/objdef.h b/src/objdef.h index 77189e454..1b96fa52a 100644 --- a/src/objdef.h +++ b/src/objdef.h @@ -59,6 +59,7 @@ class ObjDefManager { public: ObjDefManager(IGameDef *gamedef, ObjDefType type); virtual ~ObjDefManager(); + DISABLE_CLASS_COPY(ObjDefManager); virtual const char *getObjectTitle() const { return "ObjDef"; } @@ -91,9 +92,6 @@ protected: INodeDefManager *m_ndef; std::vector<ObjDef *> m_objects; ObjDefType m_objtype; - -private: - DISABLE_CLASS_COPY(ObjDefManager); }; #endif |