[Libufo-commits] ufo-0.5/include/ufo/config ufo_config_msvc.hpp,1.11,1.12
Status: Beta
Brought to you by:
schmidtjf
|
From: Johannes S. <sch...@us...> - 2005-09-30 12:42:16
|
Update of /cvsroot/libufo/ufo-0.5/include/ufo/config In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5307/include/ufo/config Modified Files: ufo_config_msvc.hpp Log Message: Added pragma description. Index: ufo_config_msvc.hpp =================================================================== RCS file: /cvsroot/libufo/ufo-0.5/include/ufo/config/ufo_config_msvc.hpp,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** ufo_config_msvc.hpp 13 Feb 2005 17:49:24 -0000 1.11 --- ufo_config_msvc.hpp 30 Sep 2005 12:42:08 -0000 1.12 *************** *** 30,36 **** // disable win32 warnings on exporting STL objects ! #pragma warning(disable: 4231) #pragma warning(disable: 4244) // 'conversion' conversion from 'type1' to 'type2', possible loss of data ! #pragma warning(disable: 4251) #pragma warning(disable: 4275) // non - DLL-interface classkey 'identifier' used as base for DLL-interface classkey 'identifier' --- 30,36 ---- // disable win32 warnings on exporting STL objects ! #pragma warning(disable: 4231) // nonstandard extension used : 'extern' before template explicit instantiation #pragma warning(disable: 4244) // 'conversion' conversion from 'type1' to 'type2', possible loss of data ! #pragma warning(disable: 4251) // class 'A' needs to have dll interface for to be used by clients of class 'B'. #pragma warning(disable: 4275) // non - DLL-interface classkey 'identifier' used as base for DLL-interface classkey 'identifier' |