diff options
Diffstat (limited to 'cpp/test/Ice/exceptions/TestI.cpp')
-rw-r--r-- | cpp/test/Ice/exceptions/TestI.cpp | 28 |
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; } |