From a90f9dc769347e1f15f9ba83d519dcbfbcaef715 Mon Sep 17 00:00:00 2001 From: Adam Wulkiewicz Date: Tue, 21 Jul 2015 19:20:03 +0200 Subject: [PATCH] [concepts] Suppress GCC4.4 warning (unused variable). --- include/boost/geometry/geometries/concepts/point_concept.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/geometry/geometries/concepts/point_concept.hpp b/include/boost/geometry/geometries/concepts/point_concept.hpp index db4977112..52f8d038e 100644 --- a/include/boost/geometry/geometries/concepts/point_concept.hpp +++ b/include/boost/geometry/geometries/concepts/point_concept.hpp @@ -165,7 +165,7 @@ class ConstPoint { const P* p = 0; ctype coord(geometry::get(*p)); - boost::ignore_unused(coord); + boost::ignore_unused(p, coord); dimension_checker::apply(); } };