Merge pull request #24 from donbright/visitorxpfix2

I don't have a platform to test this on but the change looks simple enough and from a previously trusted author.
stl_dim
Giles Bathgate 2011-09-13 11:43:14 -07:00
commit 201dda5c4c
1 changed files with 8 additions and 0 deletions

View File

@ -3,6 +3,14 @@
#ifdef ENABLE_CGAL
#ifdef _MSC_VER
// see http://en.wikipedia.org/wiki/Stdint.h
// and http://www.mpfr.org/mpfr-2.4.2/#stdint
#include <boost/cstdint.hpp>
using boost::intmax_t;
using boost::uintmax_t;
#endif
#include <CGAL/Gmpq.h>
#include <CGAL/Extended_cartesian.h>
#include <CGAL/Nef_polyhedron_2.h>