diff options
author | Jose <jose@zeroc.com> | 2012-07-19 18:26:38 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2012-07-19 18:26:38 +0200 |
commit | d0994b8115bc70f04b772d21365703a3a106587d (patch) | |
tree | 1bb72b16494ab7a14a48035e9bdac02dc82b0585 /cpp/test/IceUtil/inputUtil/Client.cpp | |
parent | ICE-4782 Generate "#pragma once" for include-guards in generated C++ header f... (diff) | |
download | ice-d0994b8115bc70f04b772d21365703a3a106587d.tar.bz2 ice-d0994b8115bc70f04b772d21365703a3a106587d.tar.xz ice-d0994b8115bc70f04b772d21365703a3a106587d.zip |
Remove BCC support
Diffstat (limited to 'cpp/test/IceUtil/inputUtil/Client.cpp')
-rw-r--r-- | cpp/test/IceUtil/inputUtil/Client.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/cpp/test/IceUtil/inputUtil/Client.cpp b/cpp/test/IceUtil/inputUtil/Client.cpp index 4f649c7e5ae..73543bb4a19 100644 --- a/cpp/test/IceUtil/inputUtil/Client.cpp +++ b/cpp/test/IceUtil/inputUtil/Client.cpp @@ -21,10 +21,7 @@ using namespace std; #define WS " \f\n\r\t\v" -#if defined(__BCPLUSPLUS__) -Int64 Int64Min = -9223372036854775808i64; -Int64 Int64Max = 9223372036854775807i64; -#elif defined(_MSC_VER) +#if defined(_MSC_VER) const Int64 Int64Min = -9223372036854775808i64; const Int64 Int64Max = 9223372036854775807i64; #elif defined(ICE_64) |