diff options
author | Bernard Normier <bernard@zeroc.com> | 2017-05-04 12:11:21 -0400 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2017-05-04 12:11:21 -0400 |
commit | 8e2d2f4e7ce61c451014acd3d7b8a27ee5ad0611 (patch) | |
tree | 0a4d95032906d08ba46fc7433c5a890f8ac28941 /cpp/test/Ice/slicing/exceptions/Test.ice | |
parent | Fixed allTests.py to support --workers even when cross testing (diff) | |
download | ice-8e2d2f4e7ce61c451014acd3d7b8a27ee5ad0611.tar.bz2 ice-8e2d2f4e7ce61c451014acd3d7b8a27ee5ad0611.tar.xz ice-8e2d2f4e7ce61c451014acd3d7b8a27ee5ad0611.zip |
Removed optional semicolons after braces
Diffstat (limited to 'cpp/test/Ice/slicing/exceptions/Test.ice')
-rw-r--r-- | cpp/test/Ice/slicing/exceptions/Test.ice | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/cpp/test/Ice/slicing/exceptions/Test.ice b/cpp/test/Ice/slicing/exceptions/Test.ice index 3ce6959161d..c6931b59a43 100644 --- a/cpp/test/Ice/slicing/exceptions/Test.ice +++ b/cpp/test/Ice/slicing/exceptions/Test.ice @@ -15,39 +15,39 @@ module Test exception Base { string b; -}; +} exception KnownDerived extends Base { string kd; -}; +} exception KnownIntermediate extends Base { string ki; -}; +} exception KnownMostDerived extends KnownIntermediate { string kmd; -}; +} ["preserve-slice"] exception KnownPreserved extends Base { string kp; -}; +} exception KnownPreservedDerived extends KnownPreserved { string kpd; -}; +} ["preserve-slice"] class BaseClass { string bc; -}; +} ["format:sliced"] interface Relay @@ -57,7 +57,7 @@ interface Relay void unknownPreservedAsBase() throws Base; void unknownPreservedAsKnownPreserved() throws KnownPreserved; -}; +} ["format:sliced"] interface TestIntf @@ -93,6 +93,6 @@ interface TestIntf void relayUnknownPreservedAsKnownPreserved(Relay* r) throws KnownPreserved; void shutdown(); -}; +} -}; +} |