From a45af28485824efb34bda0eb3d591f0afb1b6307 Mon Sep 17 00:00:00 2001 From: Bruno Lalande Date: Tue, 5 Jun 2012 16:57:22 +0000 Subject: [PATCH] Integrated not_implemented into envelope. [SVN r78814] --- include/boost/geometry/algorithms/envelope.hpp | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) diff --git a/include/boost/geometry/algorithms/envelope.hpp b/include/boost/geometry/algorithms/envelope.hpp index c9f4348bf..ee88fe888 100644 --- a/include/boost/geometry/algorithms/envelope.hpp +++ b/include/boost/geometry/algorithms/envelope.hpp @@ -14,13 +14,13 @@ #ifndef BOOST_GEOMETRY_ALGORITHMS_ENVELOPE_HPP #define BOOST_GEOMETRY_ALGORITHMS_ENVELOPE_HPP -#include #include #include #include #include +#include #include #include #include @@ -82,23 +82,13 @@ namespace dispatch { -// Note, the strategy is for future use (less/greater -> compare spherical -// using other methods), defaults are OK for now. -// However, they are already in the template methods - template < typename Geometry, - typename Tag1 = typename tag::type + typename Tag = typename tag::type > -struct envelope -{ - BOOST_MPL_ASSERT_MSG - ( - false, NOT_OR_NOT_YET_IMPLEMENTED_FOR_THIS_GEOMETRY_TYPE - , (types) - ); -}; +struct envelope: not_implemented +{}; template