Changes in src/Patterns/Singleton_impl.hpp [6d574a:0f6f3a]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Patterns/Singleton_impl.hpp
r6d574a r0f6f3a 72 72 template <class T,bool _may_create> 73 73 void Singleton<T,_may_create>::setInstance(T* newInstance){ 74 ASSERT(!theInstance.get(),"Trying to set the instance of an already created singleton");74 assert(!theInstance.get() && "Trying to set the instance of an already created singleton"); 75 75 boost::recursive_mutex::scoped_lock guard(instanceLock); 76 76 theInstance.reset(newInstance); … … 83 83 template <class T, bool _may_create> 84 84 Singleton<T,_may_create>::Singleton(const Singleton<T,_may_create>&){ 85 ASSERT(0,"Copy constructor of singleton template called");85 assert(0 && "Copy constructor of singleton template called"); 86 86 } 87 87
Note:
See TracChangeset
for help on using the changeset viewer.