diff options
author | Bernard Normier <bernard@zeroc.com> | 2005-09-22 14:01:13 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2005-09-22 14:01:13 +0000 |
commit | 1fe509c0c26b31ee654dda17be99205362024f68 (patch) | |
tree | f0248f6827bece2662cc4899071c52b289c6b85a /cpp/src/icecpp/config.h | |
parent | Fix (diff) | |
download | ice-1fe509c0c26b31ee654dda17be99205362024f68.tar.bz2 ice-1fe509c0c26b31ee654dda17be99205362024f68.tar.xz ice-1fe509c0c26b31ee654dda17be99205362024f68.zip |
Ported IceUtil to VS 2005 Beta 2 x64
Diffstat (limited to 'cpp/src/icecpp/config.h')
-rw-r--r-- | cpp/src/icecpp/config.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cpp/src/icecpp/config.h b/cpp/src/icecpp/config.h index 5eacee9d5f1..1480369ff05 100644 --- a/cpp/src/icecpp/config.h +++ b/cpp/src/icecpp/config.h @@ -29,6 +29,13 @@ # ifdef _MSC_VER # pragma warning( disable : 4018 ) # pragma warning( disable : 4244 ) +// +// +// TEMPORARY: move deprecated warning on VC8 to level 4 +# if _MSC_VER==1400 +# pragma warning( 4 : 4996 ) +# pragma warning( 4 : 4267 ) +# endif # endif # define alloca _alloca #endif |