summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/exceptions/TestI.cpp
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2002-07-09 01:20:30 +0000
committerMichi Henning <michi@zeroc.com>2002-07-09 01:20:30 +0000
commitcf1e8965fee4efc3f188fae487fdf48e315aa60a (patch)
tree012e1cbc8285f79aeca6a9b0b818dca0b41aa6ed /cpp/test/Ice/exceptions/TestI.cpp
parentUpdated dependencies. (diff)
downloadice-cf1e8965fee4efc3f188fae487fdf48e315aa60a.tar.bz2
ice-cf1e8965fee4efc3f188fae487fdf48e315aa60a.tar.xz
ice-cf1e8965fee4efc3f188fae487fdf48e315aa60a.zip
Got tripped up by the style guide again and change "_mem" to "Mem" :-)
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 b9effcb6971..613c8643b2f 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_mem = a;
+ ex.aMem = a;
throw ex;
}
@@ -36,13 +36,13 @@ ThrowerI::throwAorDasAorD(Ice::Int a, const Ice::Current&)
if(a > 0)
{
A ex;
- ex.a_mem = a;
+ ex.aMem = a;
throw ex;
}
else
{
D ex;
- ex.d_mem = a;
+ ex.dMem = a;
throw ex;
}
}
@@ -63,8 +63,8 @@ void
ThrowerI::throwBasB(Ice::Int a, Ice::Int b, const Ice::Current&)
{
B ex;
- ex.a_mem = a;
- ex.b_mem = b;
+ ex.aMem = a;
+ ex.bMem = 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_mem = a;
- ex.b_mem = b;
- ex.c_mem = c;
+ ex.aMem = a;
+ ex.bMem = b;
+ ex.cMem = c;
throw ex;
}
@@ -94,7 +94,7 @@ void
ThrowerI::throwUndeclaredA(Ice::Int a, const Ice::Current&)
{
A ex;
- ex.a_mem = a;
+ ex.aMem = a;
throw ex;
}
@@ -102,8 +102,8 @@ void
ThrowerI::throwUndeclaredB(Ice::Int a, Ice::Int b, const Ice::Current&)
{
B ex;
- ex.a_mem = a;
- ex.b_mem = b;
+ ex.aMem = a;
+ ex.bMem = 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_mem = a;
- ex.b_mem = b;
- ex.c_mem = c;
+ ex.aMem = a;
+ ex.bMem = b;
+ ex.cMem = c;
throw ex;
}