From 48e869fb659bcd7ec35562199cbfa4ddb37b4bcc Mon Sep 17 00:00:00 2001 From: Michael Hemmer Date: Thu, 13 Mar 2008 10:13:22 +0000 Subject: [PATCH] forgotten const --- Number_types/include/CGAL/leda_integer.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Number_types/include/CGAL/leda_integer.h b/Number_types/include/CGAL/leda_integer.h index 6f67aaa9806..48f1a513e4f 100644 --- a/Number_types/include/CGAL/leda_integer.h +++ b/Number_types/include/CGAL/leda_integer.h @@ -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;