[GIT] ppl/ppl(floating_point): Fixed operator names.

Module: ppl/ppl Branch: floating_point Commit: 74620fd8c5d3cf65eb8503a5825bb196fe0d9cb1 URL: http://www.cs.unipr.it/git/gitweb.cgi?p=ppl/ppl.git;a=commit;h=74620fd8c5d3c...
Author: Fabio Bossi bossi@cs.unipr.it Date: Sat Jul 24 17:44:00 2010 +0200
Fixed operator names.
---
tests/Concrete_Expression/C_Expr.defs.hh | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/tests/Concrete_Expression/C_Expr.defs.hh b/tests/Concrete_Expression/C_Expr.defs.hh index 05c2311..93c5dac 100644 --- a/tests/Concrete_Expression/C_Expr.defs.hh +++ b/tests/Concrete_Expression/C_Expr.defs.hh @@ -61,9 +61,9 @@ public: //! Returns the right-hand side of \p *this. const C_Expr* right_hand_side() const;
- static const Concrete_Expression_BOP PLUS = 0; - static const Concrete_Expression_BOP MINUS = 1; - static const Concrete_Expression_BOP TIMES = 2; + static const Concrete_Expression_BOP ADD = 0; + static const Concrete_Expression_BOP SUB = 1; + static const Concrete_Expression_BOP MUL = 2; static const Concrete_Expression_BOP DIV = 3; static const Concrete_Expression_BOP REM = 4; static const Concrete_Expression_BOP BAND = 5;
participants (1)
-
Fabio Bossi