diff options
author | Matthew Newhook <matthew@zeroc.com> | 2005-08-15 01:12:12 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2005-08-15 01:12:12 +0000 |
commit | efa2672067881ea38ad62d0af8a452275daa2aba (patch) | |
tree | 644a1bb70b8a4404581fb5676e39b26c0d605050 /cpp/src | |
parent | pragma warning( disable : 4717 ) in generated code for WCE. (diff) | |
download | ice-efa2672067881ea38ad62d0af8a452275daa2aba.tar.bz2 ice-efa2672067881ea38ad62d0af8a452275daa2aba.tar.xz ice-efa2672067881ea38ad62d0af8a452275daa2aba.zip |
added comment.
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/slice2cppe/Gen.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cpp/src/slice2cppe/Gen.cpp b/cpp/src/slice2cppe/Gen.cpp index 21bbcf494d3..c3756823601 100644 --- a/cpp/src/slice2cppe/Gen.cpp +++ b/cpp/src/slice2cppe/Gen.cpp @@ -239,6 +239,12 @@ Slice::Gen::generate(const UnitPtr& p) C << "\n#include <IceE/LocalException.h>"; } + // + // COMPILERFIX: EVC 4. Cannot find a way to work around the + // "recursive on all control paths, function will cause runtime + // stack overflow" for the exception test, hence we disable the + // warning ONLY in the generated code. + // C << "\n"; C << "\n#ifdef _WIN32_WCE"; C << "\n# pragma warning( disable : 4717 )"; |