#ifndef CGAL_EXACTNESS_H #define CGAL_EXACTNESS_H #include #include namespace CGAL { namespace internal { BOOST_MPL_HAS_XXX_TRAIT_DEF(Is_exact) } template::value> struct Is_exact { enum { value=false }; typedef Tag_false type; }; template struct Is_exact { typedef typename T::Is_exact type; enum { value=type::value }; }; } #endif // CGAL_EXACTNESS_H