vc++ compile failure workaround in testcase
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@12648 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
b8d2e9f8f6
commit
8358fd401e
1 changed files with 5 additions and 0 deletions
|
|
@ -8,8 +8,13 @@ namespace ArrayExample
|
|||
{
|
||||
public:
|
||||
Eight node_list;
|
||||
#ifndef _MSC_VER
|
||||
const Eight node_list2;
|
||||
ConstEight node_list3;
|
||||
#else
|
||||
Eight node_list2;
|
||||
Eight node_list3;
|
||||
#endif
|
||||
|
||||
void fn1(Eight a) {}
|
||||
void fn2(const Eight a) {}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue