]> www.ginac.de Git - ginac.git/blobdiff - ginsh/ginsh_parser.yy
* Eliminated overloaded operator% for noncommunistic objects for good.
[ginac.git] / ginsh / ginsh_parser.yy
index 784af1cb22902a1724aaf10dad7a3c853d6ccd15..d715347677e03068c829c855cccd271595f7c784 100644 (file)
@@ -215,7 +215,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           {$$ = power($1, $3);}