forgotten const

This commit is contained in:
Michael Hemmer 2008-03-13 10:13:22 +00:00
parent 4187ba81b4
commit 48e869fb65
1 changed files with 2 additions and 1 deletions

View File

@ -84,8 +84,9 @@ template <> class Algebraic_structure_traits< leda_integer >
typedef Type& third_argument_type;
typedef Type& fourth_argument_type;
typedef void result_type;
typedef Arity_tag< 4 > Arity;
void operator()(const Type& x, const Type& y, Type& q, Type& r){
void operator()(const Type& x, const Type& y, Type& q, Type& r) const {
q = x / y;
r = x - q*y;