Fixed usage of default delete

git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@75 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
jbouchard 2002-11-07 18:50:44 +00:00
parent ec8b9cbf5d
commit cff15d1d0c

View file

@ -169,7 +169,7 @@ namespace Loki
SingletonHolder<MySmallObjAllocator, CreateStatic,
PhoenixSingleton>::Instance().Deallocate(p, size);
#else
::operator delete(p, size);
::operator delete(p);
#endif
}
virtual ~SmallObject() {}