diff --git a/Examples/test-suite/arrays_scope.i b/Examples/test-suite/arrays_scope.i index 164f7ec32..3d27be0b7 100644 --- a/Examples/test-suite/arrays_scope.i +++ b/Examples/test-suite/arrays_scope.i @@ -7,11 +7,11 @@ namespace foo { enum { BSIZE = 512 }; class Bar { public: - enum { CSIZE = 768 }; + enum { CCSIZE = 768 }; int adata[ASIZE]; int bdata[BSIZE]; - int cdata[CSIZE]; - void blah(int x[ASIZE], int y[BSIZE], int z[CSIZE]) { }; + int cdata[CCSIZE]; + void blah(int x[ASIZE], int y[BSIZE], int z[CCSIZE]) { }; }; } diff --git a/Examples/test-suite/namespace_nested.i b/Examples/test-suite/namespace_nested.i index ec75c19a6..36b4680a5 100644 --- a/Examples/test-suite/namespace_nested.i +++ b/Examples/test-suite/namespace_nested.i @@ -13,8 +13,8 @@ }; } - template - struct Hi : _T1 + template < class T1 > + struct Hi : T1 { }; } @@ -45,8 +45,8 @@ namespace hello namespace oss { - template - struct hi1 : _T + template + struct hi1 : T1 { }; }