diff options
author | Benoit Foucher <benoit@zeroc.com> | 2004-11-18 16:44:42 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2004-11-18 16:44:42 +0000 |
commit | fe96c999bc085c376fbc68cadbb05efe08cac6a8 (patch) | |
tree | 66da7d76570c6d8d56f2baabf287b6802fb10920 /cpp | |
parent | BerkeleyDB fix (diff) | |
download | ice-fe96c999bc085c376fbc68cadbb05efe08cac6a8.tar.bz2 ice-fe96c999bc085c376fbc68cadbb05efe08cac6a8.tar.xz ice-fe96c999bc085c376fbc68cadbb05efe08cac6a8.zip |
Fix
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/include/IceUtil/Config.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/include/IceUtil/Config.h b/cpp/include/IceUtil/Config.h index 67c8d79e44e..5d80ec3543b 100644 --- a/cpp/include/IceUtil/Config.h +++ b/cpp/include/IceUtil/Config.h @@ -198,9 +198,9 @@ const Int64 Int64Max = 0x7fffffffffffffffLL; // typedef int64_t Int64; # ifdef INT64_MIN -const Int64 Int64Min = -0x7fffffffffffffffLL-1LL; -# else const Int64 Int64Min = INT64_MIN; +# else +const Int64 Int64Min = -0x7fffffffffffffffLL-1LL; # endif # ifdef INT64_MIN const Int64 Int64Max = INT64_MAX; |