diff options
author | Joe George <joe@zeroc.com> | 2014-10-31 14:07:49 -0400 |
---|---|---|
committer | Joe George <joe@zeroc.com> | 2014-10-31 14:07:49 -0400 |
commit | 0aeb8225557e1275e6674c835dd7045ab442105d (patch) | |
tree | d7c3fb307aa3cf282bcdaf1d12ebbd51942b1c18 /cpp/demo/Freeze/library/Parser.cpp | |
parent | ICE-5813 - Remove DisableWarnings from demos (diff) | |
download | ice-0aeb8225557e1275e6674c835dd7045ab442105d.tar.bz2 ice-0aeb8225557e1275e6674c835dd7045ab442105d.tar.xz ice-0aeb8225557e1275e6674c835dd7045ab442105d.zip |
Fix demo builds caused by ICE-5813
Diffstat (limited to 'cpp/demo/Freeze/library/Parser.cpp')
-rw-r--r-- | cpp/demo/Freeze/library/Parser.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cpp/demo/Freeze/library/Parser.cpp b/cpp/demo/Freeze/library/Parser.cpp index 62197e8267f..14013779553 100644 --- a/cpp/demo/Freeze/library/Parser.cpp +++ b/cpp/demo/Freeze/library/Parser.cpp @@ -14,6 +14,10 @@ # include <readline/history.h> #endif +#ifdef _MSC_VER +# pragma warning( disable : 4996 ) +#endif + using namespace std; using namespace Demo; |