From 021c7c0044cd916041ae5efef7ea0b8060e287bc Mon Sep 17 00:00:00 2001 From: Artem Pavlenko Date: Mon, 16 Feb 2009 23:31:47 +0000 Subject: [PATCH] + ignore unused variable warning --- include/mapnik/value.hpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/include/mapnik/value.hpp b/include/mapnik/value.hpp index 91cbd7d46..5717ce221 100644 --- a/include/mapnik/value.hpp +++ b/include/mapnik/value.hpp @@ -420,6 +420,8 @@ namespace mapnik { value_type operator() (bool lhs, bool rhs ) const { + boost::ignore_unused_variable_warning(lhs); + boost::ignore_unused_variable_warning(rhs); return false; } @@ -464,7 +466,9 @@ namespace mapnik { value_type operator() (bool lhs, bool rhs) const - { + { + boost::ignore_unused_variable_warning(lhs); + boost::ignore_unused_variable_warning(rhs); return false; }