remove useless const

This commit is contained in:
Sébastien Loriot 2022-12-14 17:05:57 +01:00 committed by Jane Tournois
parent cc051878fb
commit d7843a23ea
2 changed files with 2 additions and 2 deletions

View File

@ -151,7 +151,7 @@ public:
// Destructor // Destructor
~Cell_uniform_size_criterion() {} ~Cell_uniform_size_criterion() {}
const bool is_lower_bound() const bool is_lower_bound() const
{ {
return is_lower_bound_; return is_lower_bound_;
} }

View File

@ -404,7 +404,7 @@ public:
, is_lower_bound_(is_lower_bound) , is_lower_bound_(is_lower_bound)
{} {}
const bool is_lower_bound() const bool is_lower_bound() const
{ {
return is_lower_bound_; return is_lower_bound_;
} }