Tried to fix preproc problem om VC7.

This commit is contained in:
Michael Hoffmann 2003-05-05 12:50:38 +00:00
parent f7c6d5ddf0
commit 3e25ea2dc2
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ HyperplaneCd(const PointCd<FT,LA>* first, const PointCd<FT,LA>* 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<PointCd<FT,LA> >::iterator vecpntit;