]> www.ginac.de Git - ginac.git/blobdiff - ginac/input_parser.yy
* Eliminated overloaded operator% for noncommunistic objects for good.
[ginac.git] / ginac / input_parser.yy
index af46af0a04751e134d18c525b5d2df4349e2708a..d1e876690967227869fa4bc18007351a443f877c 100644 (file)
@@ -109,7 +109,6 @@ exp : T_NUMBER              {$$ = $1;}
        | exp '-' exp           {$$ = $1 - $3;}
        | exp '*' exp           {$$ = $1 * $3;}
        | exp '/' exp           {$$ = $1 / $3;}
-       | exp '%' exp           {$$ = $1 % $3;}
        | '-' exp %prec NEG     {$$ = -$2;}
        | '+' exp %prec NEG     {$$ = $2;}
        | exp '^' exp           {$$ = pow($1, $3);}