From b84346d0c764ed6ee626b2da8a82e2a0e1dfed06 Mon Sep 17 00:00:00 2001 From: Olly Betts Date: Sat, 23 Sep 2006 22:40:13 +0000 Subject: [PATCH] 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 --- SWIG/Examples/test-suite/template_expr.i | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SWIG/Examples/test-suite/template_expr.i b/SWIG/Examples/test-suite/template_expr.i index d1fcf4353..7aaa7068d 100644 --- a/SWIG/Examples/test-suite/template_expr.i +++ b/SWIG/Examples/test-suite/template_expr.i @@ -43,7 +43,7 @@ class X {}; template class X994301 {}; %} -%template(X994301_ternary) X<(7 >= 4) ? 1 + 1 : 1>; +%template(X994301_ternary) X<(7 != 4) ? 1 + 1 : 1>; // bug #1338527 (still broken)