summaryrefslogtreecommitdiff
path: root/objective-c/test/Ice/operations/OperationsTest.ice
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2017-05-04 12:11:21 -0400
committerBernard Normier <bernard@zeroc.com>2017-05-04 12:11:21 -0400
commit8e2d2f4e7ce61c451014acd3d7b8a27ee5ad0611 (patch)
tree0a4d95032906d08ba46fc7433c5a890f8ac28941 /objective-c/test/Ice/operations/OperationsTest.ice
parentFixed allTests.py to support --workers even when cross testing (diff)
downloadice-8e2d2f4e7ce61c451014acd3d7b8a27ee5ad0611.tar.bz2
ice-8e2d2f4e7ce61c451014acd3d7b8a27ee5ad0611.tar.xz
ice-8e2d2f4e7ce61c451014acd3d7b8a27ee5ad0611.zip
Removed optional semicolons after braces
Diffstat (limited to 'objective-c/test/Ice/operations/OperationsTest.ice')
-rw-r--r--objective-c/test/Ice/operations/OperationsTest.ice26
1 files changed, 13 insertions, 13 deletions
diff --git a/objective-c/test/Ice/operations/OperationsTest.ice b/objective-c/test/Ice/operations/OperationsTest.ice
index f1705ab34d5..6029218c450 100644
--- a/objective-c/test/Ice/operations/OperationsTest.ice
+++ b/objective-c/test/Ice/operations/OperationsTest.ice
@@ -20,21 +20,21 @@ enum MyEnum
enum1,
enum2,
enum3
-};
+}
interface MyClass;
struct AnotherStruct
{
string s;
-};
+}
struct Structure
{
MyClass* p;
MyEnum e;
AnotherStruct s;
-};
+}
sequence<byte> ByteS;
sequence<bool> BoolS;
@@ -64,7 +64,7 @@ struct MyStruct
{
int i;
int j;
-};
+}
dictionary<byte, bool> ByteBoolD;
dictionary<short, int> ShortIntD;
@@ -106,12 +106,12 @@ struct Struct2 // Ensures the generated code for this struct compiles
StructS ss;
ByteBoolD dict;
MyEnumSS seq;
-};
+}
class A // Used Objective-C test only.
{
int i;
-};
+}
sequence<A> AS; // Used by Objective-C test only.
@@ -303,28 +303,28 @@ interface MyClass
void putNSNullStringStringDict(StringStringD d);
void putNSNullShortIntDict(ShortIntD d);
void putNSNullStringMyEnumDict(StringMyEnumD d);
-};
+}
struct MyStruct1
{
string tesT; // Same name as the enclosing module
MyClass myClass; // Same name as an already defined class
string myStruct1; // Same name as the enclosing struct
-};
+}
class MyClass1
{
string tesT; // Same name as the enclosing module
MyClass myClass; // Same name as an already defined class
string myClass1; // Same name as the enclosing class
-};
+}
interface MyDerivedClass extends MyClass
{
void opDerived();
MyClass1 opMyClass1(MyClass1 c);
MyStruct1 opMyStruct1(MyStruct1 c);
-};
+}
//
@@ -395,7 +395,7 @@ const string su0 = "ĨŸÿĀἀ𐆔𐅪𐆘🍀🍁🍂🍃";
const string su1 = "\u0128\u0178\u00FF\u0100\u1F00\U00010194\U0001016A\U00010198\U0001F340\U0001F341\U0001F342\U0001F343";
const string su2 = "\U00000128\U00000178\U000000FF\U00000100\U00001F00\U00010194\U0001016A\U00010198\U0001F340\U0001F341\U0001F342\U0001F343";
-};
+}
module Test2
{
@@ -408,6 +408,6 @@ module Test2
**/
interface MyDerivedClass extends Test::MyClass
{
-};
+}
-};
+}