fixed some OS-X name clashes

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4774 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Dave Beazley 2003-05-07 22:38:00 +00:00
commit ba059f4de3
2 changed files with 7 additions and 7 deletions

View file

@ -7,11 +7,11 @@ namespace foo {
enum { BSIZE = 512 }; enum { BSIZE = 512 };
class Bar { class Bar {
public: public:
enum { CSIZE = 768 }; enum { CCSIZE = 768 };
int adata[ASIZE]; int adata[ASIZE];
int bdata[BSIZE]; int bdata[BSIZE];
int cdata[CSIZE]; int cdata[CCSIZE];
void blah(int x[ASIZE], int y[BSIZE], int z[CSIZE]) { }; void blah(int x[ASIZE], int y[BSIZE], int z[CCSIZE]) { };
}; };
} }

View file

@ -13,8 +13,8 @@
}; };
} }
template <class _T1> template < class T1 >
struct Hi : _T1 struct Hi : T1
{ {
}; };
} }
@ -45,8 +45,8 @@ namespace hello
namespace oss namespace oss
{ {
template <class _T> template <class T1>
struct hi1 : _T struct hi1 : T1
{ {
}; };
} }