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 /objective-c/test/Ice/inheritance/InheritanceTest.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 'objective-c/test/Ice/inheritance/InheritanceTest.ice')
-rw-r--r-- | objective-c/test/Ice/inheritance/InheritanceTest.ice | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/objective-c/test/Ice/inheritance/InheritanceTest.ice b/objective-c/test/Ice/inheritance/InheritanceTest.ice index 9d0b5aa2743..abfedba3734 100644 --- a/objective-c/test/Ice/inheritance/InheritanceTest.ice +++ b/objective-c/test/Ice/inheritance/InheritanceTest.ice @@ -22,14 +22,14 @@ module MA interface IA { IA* iaop(IA* p); -}; +} class CA { CA* caop(CA* p); -}; +} -}; +} ["objc:prefix:TestInheritanceMB"] module MB @@ -38,19 +38,19 @@ module MB interface IB1 extends MA::IA { IB1* ib1op(IB1* p); -}; +} interface IB2 extends MA::IA { IB2* ib2op(IB2* p); -}; +} class CB extends MA::CA { CB* cbop(CB* p); -}; +} -}; +} ["objc:prefix:TestInheritanceMA"] module MA @@ -59,19 +59,19 @@ module MA interface IC extends MB::IB1, MB::IB2 { IC* icop(IC* p); -}; +} class CC extends MB::CB { CC* ccop(CC* p); -}; +} class CD extends CC implements MB::IB1, MB::IB2 { CD* cdop(CD* p); -}; +} -}; +} interface Initial { @@ -84,6 +84,6 @@ interface Initial MB::IB1* ib1op(); MB::IB2* ib2op(); MA::IC* icop(); -}; +} -}; +} |