mirror of
https://github.com/mapnik/mapnik.git
synced 2025-12-08 20:13:09 +00:00
+ ignore unused variable warning
This commit is contained in:
parent
4aba853d7a
commit
021c7c0044
@ -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;
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user