fix last fix, error visible with 1.875b, reported by Susendra Singhi

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@8009 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Marcelo Matus 2005-12-18 19:54:38 +00:00
commit c873fc6207

View file

@ -5293,10 +5293,10 @@ expr : exprnum { $$ = $1; }
| AND expr {
$$.val = NewStringf("&%s",$2.val);
}
;
| STAR expr {
$$.val = NewStringf("*%s",$2.val);
}
;
exprnum : NUM_INT { $$ = $1; }
| NUM_FLOAT { $$ = $1; }