[Libufo-commits] ufo-0.5/include/ufo ucollectable.hpp,1.11,1.12
Status: Beta
Brought to you by:
schmidtjf
|
From: Johannes S. <sch...@us...> - 2005-09-30 14:30:26
|
Update of /cvsroot/libufo/ufo-0.5/include/ufo In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29580/include/ufo Modified Files: ucollectable.hpp Log Message: Explicitly inlined all inline methods (to mollify MinGw about dllimport linkage warnings). Index: ucollectable.hpp =================================================================== RCS file: /cvsroot/libufo/ufo-0.5/include/ufo/ucollectable.hpp,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** ucollectable.hpp 30 Sep 2005 12:36:26 -0000 1.11 --- ucollectable.hpp 30 Sep 2005 14:30:08 -0000 1.12 *************** *** 69,73 **** // hm, evil void * operator new(std::size_t size); ! void operator delete(void * p, std::size_t /* size */); private: mutable unsigned int m_refCount : 31; --- 69,73 ---- // hm, evil void * operator new(std::size_t size); ! inline void operator delete(void * p, std::size_t /* size */); private: mutable unsigned int m_refCount : 31; |