Use != in the example here since >= doesn't work correctly yet.
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@9336 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
7a88bf91ea
commit
b84346d0c7
1 changed files with 1 additions and 1 deletions
|
|
@ -43,7 +43,7 @@ class X {};
|
|||
template<int foo> class X994301 {};
|
||||
%}
|
||||
|
||||
%template(X994301_ternary) X<(7 >= 4) ? 1 + 1 : 1>;
|
||||
%template(X994301_ternary) X<(7 != 4) ? 1 + 1 : 1>;
|
||||
|
||||
|
||||
// bug #1338527 (still broken)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue