summaryrefslogtreecommitdiff
path: root/boost/geometry/strategies/concepts/area_concept.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/geometry/strategies/concepts/area_concept.hpp')
-rw-r--r--boost/geometry/strategies/concepts/area_concept.hpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/boost/geometry/strategies/concepts/area_concept.hpp b/boost/geometry/strategies/concepts/area_concept.hpp
index 66982e3f27..6edc516f92 100644
--- a/boost/geometry/strategies/concepts/area_concept.hpp
+++ b/boost/geometry/strategies/concepts/area_concept.hpp
@@ -17,7 +17,7 @@
#include <boost/concept_check.hpp>
-
+#include <boost/core/ignore_unused.hpp>
namespace boost { namespace geometry { namespace concepts
{
@@ -52,8 +52,7 @@ class AreaStrategy
// 4) must implement a static method result with the following signature
return_type r = str->result(*st);
- boost::ignore_unused_variable_warning(r);
- boost::ignore_unused_variable_warning(str);
+ boost::ignore_unused(r, str);
}
};