summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/exceptions/TestI.cpp
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2002-07-09 00:59:16 +0000
committerMichi Henning <michi@zeroc.com>2002-07-09 00:59:16 +0000
commitbdc9c404840bfe78a8d6766723e6bce80ea26737 (patch)
treeb4a5426ee9f609393c487f2f7c526e93fc9c4b39 /cpp/test/Ice/exceptions/TestI.cpp
parentFixed INT64MIN -> Int64Min and INT64MAX -> Int64Max in Windows-specific (diff)
downloadice-bdc9c404840bfe78a8d6766723e6bce80ea26737.tar.bz2
ice-bdc9c404840bfe78a8d6766723e6bce80ea26737.tar.xz
ice-bdc9c404840bfe78a8d6766723e6bce80ea26737.zip
Change test/inpututil to test/inputUtil. Did the same thing for associated
files, such inputUtil.dsw, etc. (I moved the files in the CVS repository directly -- if you get errors during updates, just blow the test/inpututil directory away and update again.) Fixed INT64MIN/INT64MAX bug in Windows-specific code.
Diffstat (limited to 'cpp/test/Ice/exceptions/TestI.cpp')
-rw-r--r--cpp/test/Ice/exceptions/TestI.cpp28
1 files changed, 14 insertions, 14 deletions
diff --git a/cpp/test/Ice/exceptions/TestI.cpp b/cpp/test/Ice/exceptions/TestI.cpp
index b50f2866c54..b9effcb6971 100644
--- a/cpp/test/Ice/exceptions/TestI.cpp
+++ b/cpp/test/Ice/exceptions/TestI.cpp
@@ -26,7 +26,7 @@ void
ThrowerI::throwAasA(Ice::Int a, const Ice::Current&)
{
A ex;
- ex.a = a;
+ ex.a_mem = a;
throw ex;
}
@@ -36,13 +36,13 @@ ThrowerI::throwAorDasAorD(Ice::Int a, const Ice::Current&)
if(a > 0)
{
A ex;
- ex.a = a;
+ ex.a_mem = a;
throw ex;
}
else
{
D ex;
- ex.d = a;
+ ex.d_mem = a;
throw ex;
}
}
@@ -63,8 +63,8 @@ void
ThrowerI::throwBasB(Ice::Int a, Ice::Int b, const Ice::Current&)
{
B ex;
- ex.a = a;
- ex.b = b;
+ ex.a_mem = a;
+ ex.b_mem = b;
throw ex;
}
@@ -78,9 +78,9 @@ void
ThrowerI::throwCasC(Ice::Int a, Ice::Int b, Ice::Int c, const Ice::Current&)
{
C ex;
- ex.a = a;
- ex.b = b;
- ex.c = c;
+ ex.a_mem = a;
+ ex.b_mem = b;
+ ex.c_mem = c;
throw ex;
}
@@ -94,7 +94,7 @@ void
ThrowerI::throwUndeclaredA(Ice::Int a, const Ice::Current&)
{
A ex;
- ex.a = a;
+ ex.a_mem = a;
throw ex;
}
@@ -102,8 +102,8 @@ void
ThrowerI::throwUndeclaredB(Ice::Int a, Ice::Int b, const Ice::Current&)
{
B ex;
- ex.a = a;
- ex.b = b;
+ ex.a_mem = a;
+ ex.b_mem = b;
throw ex;
}
@@ -111,9 +111,9 @@ void
ThrowerI::throwUndeclaredC(Ice::Int a, Ice::Int b, Ice::Int c, const Ice::Current&)
{
C ex;
- ex.a = a;
- ex.b = b;
- ex.c = c;
+ ex.a_mem = a;
+ ex.b_mem = b;
+ ex.c_mem = c;
throw ex;
}