From 601d7f3c03289bd66b017a8f50fc14f8a3045f1a Mon Sep 17 00:00:00 2001 From: jriegel Date: Sun, 10 Aug 2014 19:10:14 +0200 Subject: [PATCH] remove double parameter functions from quantity parser --- src/Base/QuantityParser.y | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/Base/QuantityParser.y b/src/Base/QuantityParser.y index bf9bd9152..241380c61 100644 --- a/src/Base/QuantityParser.y +++ b/src/Base/QuantityParser.y @@ -47,13 +47,10 @@ | ACOS '(' num ')' { $$ = acos($3.getValue()); } | ASIN '(' num ')' { $$ = asin($3.getValue()); } | ATAN '(' num ')' { $$ = atan($3.getValue()); } - | ATAN2 '(' num ',' num ')' { $$ = atan2($3.getValue(),$5.getValue());} | ABS '(' num ')' { $$ = fabs($3.getValue()); } | EXP '(' num ')' { $$ = exp($3.getValue()); } - | MOD '(' num ',' num ')' { $$ = fmod($3.getValue(),$5.getValue()); } | LOG '(' num ')' { $$ = log($3.getValue()); } | LOG10 '(' num ')' { $$ = log10($3.getValue()); } - | POW '(' num ',' num ')' { $$ = pow($3.getValue(),$5.getValue()); } | SIN '(' num ')' { $$ = sin($3.getValue()); } | SINH '(' num ')' { $$ = sinh($3.getValue()); } | TAN '(' num ')' { $$ = tan($3.getValue()); }