avoid possible clashes with templates
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@8891 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
4ba7f6c2a2
commit
10b085f5ce
1 changed files with 2 additions and 2 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue