+ ignore unused variable warning
This commit is contained in:
parent
4aba853d7a
commit
021c7c0044
1 changed files with 5 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue