summaryrefslogtreecommitdiff
path: root/boost/geometry/core/radius.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/geometry/core/radius.hpp')
-rw-r--r--boost/geometry/core/radius.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/boost/geometry/core/radius.hpp b/boost/geometry/core/radius.hpp
index 6cbf6ac8f2..eef812e9ae 100644
--- a/boost/geometry/core/radius.hpp
+++ b/boost/geometry/core/radius.hpp
@@ -223,8 +223,8 @@ template <typename Geometry, std::size_t Dimension>
struct radius_access<srs_sphere_tag, Geometry, Dimension, boost::false_type>
: detail::radius_access<srs_sphere_tag, Geometry, Dimension>
{
- BOOST_STATIC_ASSERT(Dimension == 0);
- //BOOST_STATIC_ASSERT(Dimension < 3);
+ //BOOST_STATIC_ASSERT(Dimension == 0);
+ BOOST_STATIC_ASSERT(Dimension < 3);
};
template <typename Geometry>
@@ -237,8 +237,8 @@ template <typename Geometry, std::size_t Dimension>
struct radius_access<srs_spheroid_tag, Geometry, Dimension, boost::false_type>
: detail::radius_access<srs_spheroid_tag, Geometry, Dimension>
{
- BOOST_STATIC_ASSERT(Dimension == 0 || Dimension == 2);
- //BOOST_STATIC_ASSERT(Dimension < 3);
+ //BOOST_STATIC_ASSERT(Dimension == 0 || Dimension == 2);
+ BOOST_STATIC_ASSERT(Dimension < 3);
};
} // namespace core_dispatch