From 3e25ea2dc237bcb5d6e1caeeb0f36b444a1aae5d Mon Sep 17 00:00:00 2001 From: Michael Hoffmann Date: Mon, 5 May 2003 12:50:38 +0000 Subject: [PATCH] Tried to fix preproc problem om VC7. --- Packages/Kernel_d/include/CGAL/Kernel_d/HyperplaneCd.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Packages/Kernel_d/include/CGAL/Kernel_d/HyperplaneCd.h b/Packages/Kernel_d/include/CGAL/Kernel_d/HyperplaneCd.h index 1c00a45f12b..9c4730396e6 100644 --- a/Packages/Kernel_d/include/CGAL/Kernel_d/HyperplaneCd.h +++ b/Packages/Kernel_d/include/CGAL/Kernel_d/HyperplaneCd.h @@ -139,7 +139,7 @@ HyperplaneCd(const PointCd* first, const PointCd* last, : Base( Tuple(o.dimension()+1) ) { construct_from_points(first,last,o,side); } -#if defined( _MSC_VER_) && ! defined(__INTEL_COMPILER) +#if defined(_MSC_VER_) && ! defined(__INTEL_COMPILER) // necessary as for MSC we have the vector iterators implemented // as class types and not as pointers typedef typename std::vector >::iterator vecpntit;