summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/exceptions/TestI.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/Ice/exceptions/TestI.cpp')
-rw-r--r--cpp/test/Ice/exceptions/TestI.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/cpp/test/Ice/exceptions/TestI.cpp b/cpp/test/Ice/exceptions/TestI.cpp
index 2b95046467f..05a1e1d7863 100644
--- a/cpp/test/Ice/exceptions/TestI.cpp
+++ b/cpp/test/Ice/exceptions/TestI.cpp
@@ -48,15 +48,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;
}
}