diff options
author | Mark Spruiell <mes@zeroc.com> | 2003-02-20 20:25:15 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2003-02-20 20:25:15 +0000 |
commit | 32d82b918f3d2fd35e2763b6ee4f05980c7b651c (patch) | |
tree | ea6088bb0a5f9fb972051db555d785b0a003bc94 /cpp/test/Ice/operations/Twoways.cpp | |
parent | remove trailing comma from enum (diff) | |
download | ice-32d82b918f3d2fd35e2763b6ee4f05980c7b651c.tar.bz2 ice-32d82b918f3d2fd35e2763b6ee4f05980c7b651c.tar.xz ice-32d82b918f3d2fd35e2763b6ee4f05980c7b651c.zip |
adding ICE_INT64 macro for portable long long constants
Diffstat (limited to 'cpp/test/Ice/operations/Twoways.cpp')
-rw-r--r-- | cpp/test/Ice/operations/Twoways.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/cpp/test/Ice/operations/Twoways.cpp b/cpp/test/Ice/operations/Twoways.cpp index 98d0b5516aa..bdcbbdb7b4d 100644 --- a/cpp/test/Ice/operations/Twoways.cpp +++ b/cpp/test/Ice/operations/Twoways.cpp @@ -516,11 +516,11 @@ twoways(const Test::MyClassPrx& p) { Test::LongFloatD di1; di1[999999110] = Ice::Float(-1.1); - di1[9999991100] = Ice::Float(123123.2); + di1[999999111] = Ice::Float(123123.2); Test::LongFloatD di2; di2[999999110] = Ice::Float(-1.1); - di2[999999111] = Ice::Float(-100.4); - di2[9999991101] = Ice::Float(0.5); + di2[999999120] = Ice::Float(-100.4); + di2[999999130] = Ice::Float(0.5); Test::LongFloatD _do; Test::LongFloatD ro = p->opLongFloatD(di1, di2, _do); @@ -528,9 +528,9 @@ twoways(const Test::MyClassPrx& p) test(_do == di1); test(ro.size() == 4); test(ro[999999110] == Ice::Float(-1.1)); - test(ro[999999111] == Ice::Float(-100.4)); - test(ro[9999991100] == Ice::Float(123123.2)); - test(ro[9999991101] == Ice::Float(0.5)); + test(ro[999999120] == Ice::Float(-100.4)); + test(ro[999999111] == Ice::Float(123123.2)); + test(ro[999999130] == Ice::Float(0.5)); } { |