diff --git a/src/app/app.h b/src/app/app.h index ac8769c7..20721e24 100644 --- a/src/app/app.h +++ b/src/app/app.h @@ -407,5 +407,3 @@ protected: std::map m_textInputEnabled; }; - -template<> CApplication* CSingleton::m_instance; diff --git a/src/app/input.h b/src/app/input.h index 2b8617eb..15cdc98d 100644 --- a/src/app/input.h +++ b/src/app/input.h @@ -161,5 +161,3 @@ private: std::map m_keyTable; }; - -template<> CInput* CSingleton::m_instance; diff --git a/src/app/pathman.h b/src/app/pathman.h index 87fa4493..059c81fe 100644 --- a/src/app/pathman.h +++ b/src/app/pathman.h @@ -67,5 +67,3 @@ private: //! Save path std::string m_savePath; }; - -template<> CPathManager* CSingleton::m_instance; diff --git a/src/common/config_file.h b/src/common/config_file.h index 9acc5aee..0ed8e19f 100644 --- a/src/common/config_file.h +++ b/src/common/config_file.h @@ -112,5 +112,3 @@ inline CConfigFile & GetConfigFile() { return CConfigFile::GetInstance(); } - -template<> CConfigFile* CSingleton::m_instance; diff --git a/src/common/logger.h b/src/common/logger.h index e49fbd33..e0a935d4 100644 --- a/src/common/logger.h +++ b/src/common/logger.h @@ -136,5 +136,3 @@ inline CLogger* GetLogger() { return CLogger::GetInstancePointer(); } - -template<> CLogger* CSingleton::m_instance; diff --git a/src/common/settings.h b/src/common/settings.h index cb236601..4e9b7620 100644 --- a/src/common/settings.h +++ b/src/common/settings.h @@ -105,5 +105,3 @@ protected: Language m_language; }; - -template<> CSettings* CSingleton::m_instance; diff --git a/src/graphics/engine/engine.h b/src/graphics/engine/engine.h index 687bbafb..834de1e3 100644 --- a/src/graphics/engine/engine.h +++ b/src/graphics/engine/engine.h @@ -1490,5 +1490,3 @@ protected: } // namespace Gfx - -template<> Gfx::CEngine* CSingleton::m_instance; diff --git a/src/level/robotmain.h b/src/level/robotmain.h index d4e18525..fee753f0 100644 --- a/src/level/robotmain.h +++ b/src/level/robotmain.h @@ -716,5 +716,3 @@ protected: //! Index of currently selected element in command history int m_commandHistoryIndex; }; - -template<> CRobotMain* CSingleton::m_instance; diff --git a/src/object/object_manager.h b/src/object/object_manager.h index 2a02d24e..73ae0015 100644 --- a/src/object/object_manager.h +++ b/src/object/object_manager.h @@ -311,5 +311,3 @@ private: int m_activeObjectIterators; bool m_shouldCleanRemovedObjects; }; - -template<> CObjectManager* CSingleton::m_instance;