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:
Olly Betts 2006-09-23 22:40:13 +00:00
commit b84346d0c7

View file

@ -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)