diff options
Diffstat (limited to 'cppe/test/IceE/exceptions/TestI.cpp')
-rw-r--r-- | cppe/test/IceE/exceptions/TestI.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/cppe/test/IceE/exceptions/TestI.cpp b/cppe/test/IceE/exceptions/TestI.cpp index addf3c3bdae..72a0547cf6d 100644 --- a/cppe/test/IceE/exceptions/TestI.cpp +++ b/cppe/test/IceE/exceptions/TestI.cpp @@ -52,15 +52,15 @@ ThrowerI::throwAorDasAorD(Ice::Int a, const Ice::Current&) { if(a > 0) { - A ex; - ex.aMem = a; - throw ex; + A ex; + ex.aMem = a; + throw ex; } else { - D ex; - ex.dMem = a; - throw ex; + D ex; + ex.dMem = a; + throw ex; } } |