summaryrefslogtreecommitdiff
path: root/boost/geometry/core/access.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/geometry/core/access.hpp')
-rw-r--r--boost/geometry/core/access.hpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/boost/geometry/core/access.hpp b/boost/geometry/core/access.hpp
index 57f925763d..866fb19a4d 100644
--- a/boost/geometry/core/access.hpp
+++ b/boost/geometry/core/access.hpp
@@ -17,9 +17,10 @@
#include <cstddef>
+#include <boost/core/ignore_unused.hpp>
#include <boost/mpl/assert.hpp>
-#include <boost/concept_check.hpp>
#include <boost/type_traits/is_pointer.hpp>
+#include <boost/type_traits/remove_pointer.hpp>
#include <boost/geometry/core/coordinate_type.hpp>
#include <boost/geometry/core/point_type.hpp>
@@ -271,7 +272,7 @@ inline typename coordinate_type<Geometry>::type get(Geometry const& geometry
#endif
)
{
- boost::ignore_unused_variable_warning(dummy);
+ boost::ignore_unused(dummy);
typedef core_dispatch::access
<
@@ -306,7 +307,7 @@ inline void set(Geometry& geometry
#endif
)
{
- boost::ignore_unused_variable_warning(dummy);
+ boost::ignore_unused(dummy);
typedef core_dispatch::access
<
@@ -341,7 +342,7 @@ inline typename coordinate_type<Geometry>::type get(Geometry const& geometry
#endif
)
{
- boost::ignore_unused_variable_warning(dummy);
+ boost::ignore_unused(dummy);
typedef core_dispatch::indexed_access
<
@@ -378,7 +379,7 @@ inline void set(Geometry& geometry
#endif
)
{
- boost::ignore_unused_variable_warning(dummy);
+ boost::ignore_unused(dummy);
typedef core_dispatch::indexed_access
<