Integrated 'within' algorithm into support_status.

[SVN r76695]
This commit is contained in:
Bruno Lalande
2012-01-25 23:11:12 +00:00
parent d7f1136044
commit b18b27dea4
3 changed files with 15 additions and 11 deletions

View File

@@ -17,11 +17,11 @@
#include <cstddef>
#include <boost/mpl/assert.hpp>
#include <boost/range.hpp>
#include <boost/typeof/typeof.hpp>
#include <boost/geometry/algorithms/make.hpp>
#include <boost/geometry/algorithms/not_implemented.hpp>
#include <boost/geometry/core/access.hpp>
#include <boost/geometry/core/closure.hpp>
@@ -170,14 +170,8 @@ template
typename Tag1 = typename tag<Geometry1>::type,
typename Tag2 = typename tag<Geometry2>::type
>
struct within
{
BOOST_MPL_ASSERT_MSG
(
false, NOT_OR_NOT_YET_IMPLEMENTED_FOR_THIS_GEOMETRY_TYPE
, (types<Geometry1, Geometry2>)
);
};
struct within: not_implemented<Tag1, Tag2>
{};
template <typename Point, typename Box>