remove msvc warning
git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@698 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
parent
d08b31a152
commit
d5567eea60
1 changed files with 13 additions and 0 deletions
|
@ -25,6 +25,12 @@
|
|||
#include <string>
|
||||
#endif
|
||||
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#pragma warning( push )
|
||||
#pragma warning( disable : 4180 ) //qualifier applied to function type has no meaning; ignored
|
||||
#endif
|
||||
|
||||
namespace Loki
|
||||
{
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
@ -2213,6 +2219,10 @@ namespace Loki
|
|||
};
|
||||
}
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#pragma warning( pop )
|
||||
#endif // _MSC_VER
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// Change log:
|
||||
// June 20, 2001: ported by Nick Thurn to gcc 2.95.3. Kudos, Nick!!!
|
||||
|
@ -2225,6 +2235,9 @@ namespace Loki
|
|||
#endif // TYPETRAITS_INC_
|
||||
|
||||
// $Log$
|
||||
// Revision 1.17 2006/09/08 10:50:18 syntheticpp
|
||||
// remove msvc warning
|
||||
//
|
||||
// Revision 1.16 2006/01/16 19:05:09 rich_sposato
|
||||
// Added cvs keywords.
|
||||
//
|
||||
|
|
Loading…
Add table
Reference in a new issue