From d5567eea606af2ce73147a55a73dc316d0e58302 Mon Sep 17 00:00:00 2001 From: syntheticpp Date: Fri, 8 Sep 2006 10:50:18 +0000 Subject: [PATCH] remove msvc warning git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@698 7ec92016-0320-0410-acc4-a06ded1c099a --- include/loki/TypeTraits.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/include/loki/TypeTraits.h b/include/loki/TypeTraits.h index 0cd52d9..62aa437 100644 --- a/include/loki/TypeTraits.h +++ b/include/loki/TypeTraits.h @@ -25,6 +25,12 @@ #include #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. //