diff --git a/Mesh_3/include/CGAL/Gray_image_mesh_domain_3.h b/Mesh_3/include/CGAL/Gray_image_mesh_domain_3.h index 008a6d715c2..0828e9e0aab 100644 --- a/Mesh_3/include/CGAL/Gray_image_mesh_domain_3.h +++ b/Mesh_3/include/CGAL/Gray_image_mesh_domain_3.h @@ -35,7 +35,7 @@ namespace CGAL { namespace internal { template -struct Less_than { +struct Less_than : public std::unary_function { Less_than(const T& second) : second(second) {} bool operator()(const T& first) const { return std::less()(first, second); } T second;