diff options
author | Matthew Newhook <matthew@zeroc.com> | 2005-09-02 07:06:20 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2005-09-02 07:06:20 +0000 |
commit | 358a9be040b43c2c69bedfec2fda7e4e0cdd6ee2 (patch) | |
tree | 652008e2e3c33affb3ac3386b2764843731b7997 /cpp/include/IceUtil/Config.h | |
parent | http://bugzilla.zeroc.com/bugzilla/show_bug.cgi?id=28 (diff) | |
download | ice-358a9be040b43c2c69bedfec2fda7e4e0cdd6ee2.tar.bz2 ice-358a9be040b43c2c69bedfec2fda7e4e0cdd6ee2.tar.xz ice-358a9be040b43c2c69bedfec2fda7e4e0cdd6ee2.zip |
http://bugzilla.zeroc.com/bugzilla/show_bug.cgi?id=199
Diffstat (limited to 'cpp/include/IceUtil/Config.h')
-rw-r--r-- | cpp/include/IceUtil/Config.h | 30 |
1 files changed, 16 insertions, 14 deletions
diff --git a/cpp/include/IceUtil/Config.h b/cpp/include/IceUtil/Config.h index 10d925bd265..2149da40357 100644 --- a/cpp/include/IceUtil/Config.h +++ b/cpp/include/IceUtil/Config.h @@ -103,20 +103,22 @@ # include <windows.h> -// '...' : forcing value to bool 'true' or 'false' (performance warning) -# pragma warning( disable : 4800 ) -// ... identifier was truncated to '255' characters in the debug information -# pragma warning( disable : 4786 ) -// 'this' : used in base member initializer list -# pragma warning( disable : 4355 ) -// class ... needs to have dll-interface to be used by clients of class ... -# pragma warning( disable : 4251 ) -// ... : inherits ... via dominance -# pragma warning( disable : 4250 ) -// non dll-interface class ... used as base for dll-interface class ... -# pragma warning( disable : 4275 ) -// ...: decorated name length exceeded, name was truncated -# pragma warning( disable : 4503 ) +# ifdef _MSC_VER +// '...' : forcing value to bool 'true' or 'false' (performance warning) +# pragma warning( disable : 4800 ) +// ... identifier was truncated to '255' characters in the debug information +# pragma warning( disable : 4786 ) +// 'this' : used in base member initializer list +# pragma warning( disable : 4355 ) +// class ... needs to have dll-interface to be used by clients of class ... +# pragma warning( disable : 4251 ) +// ... : inherits ... via dominance +# pragma warning( disable : 4250 ) +// non dll-interface class ... used as base for dll-interface class ... +# pragma warning( disable : 4275 ) +// ...: decorated name length exceeded, name was truncated +# pragma warning( disable : 4503 ) +# endif #endif // |