diff --git a/NewKernel_d/include/CGAL/NewKernel_d/Types/Iso_box.h b/NewKernel_d/include/CGAL/NewKernel_d/Types/Iso_box.h index f94c905f88a..21909b2578f 100644 --- a/NewKernel_d/include/CGAL/NewKernel_d/Types/Iso_box.h +++ b/NewKernel_d/include/CGAL/NewKernel_d/Types/Iso_box.h @@ -14,10 +14,10 @@ template class Iso_box { public: Iso_box(){} Iso_box(Point_ const&a, Point_ const&b): data(a,b) {} - Point_ min()const{ + Point_ min BOOST_PREVENT_MACRO_SUBSTITUTION ()const{ return data.first; } - Point_ max()const{ + Point_ max BOOST_PREVENT_MACRO_SUBSTITUTION ()const{ return data.second; } };