mirror of https://github.com/swig/swig
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
|
@ -1,6 +1,11 @@
|
|||
Version 1.3.36 (in progress)
|
||||
=============================
|
||||
|
||||
04/24/2008: olly
|
||||
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).
|
||||
|
||||
04/20/2008: wsfulton
|
||||
Add the ability to wrap all protected members when using directors.
|
||||
Previously only the virtual methods were available to the target language.
|
||||
|
|
|
@ -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…
Reference in New Issue