avoid possible clashes with templates

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@8891 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Marcelo Matus 2006-02-24 18:58:45 +00:00
commit 74e6629c20

View file

@ -5398,11 +5398,11 @@ exprcompound : expr PLUS expr {
$$.type = promote($1.type,$3.type);
}
| expr LSHIFT expr {
$$.val = NewStringf("%s<<%s",$1.val,$3.val);
$$.val = NewStringf("%s << %s",$1.val,$3.val);
$$.type = promote($1.type,$3.type);
}
| expr RSHIFT expr {
$$.val = NewStringf("%s>>%s",$1.val,$3.val);
$$.val = NewStringf("%s >> %s",$1.val,$3.val);
$$.type = promote($1.type,$3.type);
}
| expr LAND expr {