Make a member function a const member function.

Issue found by cppcheck.
This commit is contained in:
Mark de Wever 2011-08-29 19:40:29 +00:00
parent dc7c1bbb30
commit 230c1a4271

View File

@ -250,7 +250,7 @@ public:
bool operator < ( const class_tag& t) const{
return name_ < t.name_;
}
bool operator == (const class_tag & other){
bool operator == (const class_tag & other) const {
return name_ == other.name_;
}
/**