mirror of https://github.com/CGAL/cgal
forgotten const
This commit is contained in:
parent
4187ba81b4
commit
48e869fb65
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue