From 7390dbcf650381d38192eaeffb9fb6d06e64cdbf Mon Sep 17 00:00:00 2001 From: Marc Glisse Date: Thu, 13 Mar 2014 17:38:22 +0100 Subject: [PATCH] VC and min/max... --- NewKernel_d/include/CGAL/NewKernel_d/Types/Iso_box.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } };