diff options
author | Marc Laukien <marc@zeroc.com> | 2002-09-29 17:08:25 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-09-29 17:08:25 +0000 |
commit | 7459a281dc81f573246d99b0f863ef0065e4e6ad (patch) | |
tree | 2c14f30e3e3c8f40efa795631427a6a795b34d65 /cpp/test/Ice/exceptions/TestI.cpp | |
parent | minor changes for gcc 3.2 (diff) | |
download | ice-7459a281dc81f573246d99b0f863ef0065e4e6ad.tar.bz2 ice-7459a281dc81f573246d99b0f863ef0065e4e6ad.tar.xz ice-7459a281dc81f573246d99b0f863ef0065e4e6ad.zip |
lots and lots of fixes
Diffstat (limited to 'cpp/test/Ice/exceptions/TestI.cpp')
-rw-r--r-- | cpp/test/Ice/exceptions/TestI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/test/Ice/exceptions/TestI.cpp b/cpp/test/Ice/exceptions/TestI.cpp index a57652a4292..f7ad438bbf0 100644 --- a/cpp/test/Ice/exceptions/TestI.cpp +++ b/cpp/test/Ice/exceptions/TestI.cpp @@ -126,5 +126,5 @@ ThrowerI::throwLocalException(const Ice::Current&) void ThrowerI::throwNonIceException(const Ice::Current&) { - throw int(); + throw int(12345); } |