From f0989204fb154034edeaa6b289b5932278347e8d Mon Sep 17 00:00:00 2001 From: Barend Gehrels Date: Tue, 21 Dec 2010 22:45:43 +0000 Subject: [PATCH] Added multi/closure.hpp (adaptions for MPL_ASSERT) - all should be closed otherwise linestring is closed explicitly [SVN r67402] --- include/boost/geometry/core/closure.hpp | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/include/boost/geometry/core/closure.hpp b/include/boost/geometry/core/closure.hpp index d3ac5a9df..5acd67953 100644 --- a/include/boost/geometry/core/closure.hpp +++ b/include/boost/geometry/core/closure.hpp @@ -54,11 +54,6 @@ struct closed static const closure_selector value = geometry::closed; }; -struct open -{ - static const closure_selector value = geometry::open; -}; - }} // namespace detail::point_order #endif // DOXYGEN_NO_DETAIL @@ -80,16 +75,16 @@ struct closure }; template -struct closure : public core_detail::closure::open {}; +struct closure : public core_detail::closure::closed {}; template struct closure : public core_detail::closure::closed {}; template -struct closure : public core_detail::closure::open {}; +struct closure : public core_detail::closure::closed {}; template -struct closure : public core_detail::closure::open {}; +struct closure : public core_detail::closure::closed {}; template