Rename BSIZE in Examples/test-suite/arrays_scope.i to BBSIZE to avoid
a clash with BSIZE defined by headers on AIX with Perl (reported in SF#1928048). git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10386 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
51b9794c3c
commit
42965a73cc
2 changed files with 8 additions and 3 deletions
|
|
@ -4,14 +4,14 @@
|
|||
|
||||
enum { ASIZE = 256 };
|
||||
namespace foo {
|
||||
enum { BSIZE = 512 };
|
||||
enum { BBSIZE = 512 };
|
||||
class Bar {
|
||||
public:
|
||||
enum { CCSIZE = 768 };
|
||||
int adata[ASIZE];
|
||||
int bdata[BSIZE];
|
||||
int bdata[BBSIZE];
|
||||
int cdata[CCSIZE];
|
||||
void blah(int x[ASIZE], int y[BSIZE], int z[CCSIZE]) { };
|
||||
void blah(int x[ASIZE], int y[BBSIZE], int z[CCSIZE]) { };
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue