forked from qt-creator/qt-creator
Make operators == const
Krazy complained about those.
This commit is contained in:
@@ -50,7 +50,7 @@ public:
|
||||
QString value;
|
||||
bool unset;
|
||||
|
||||
bool operator==(const EnvironmentItem &other)
|
||||
bool operator==(const EnvironmentItem &other) const
|
||||
{
|
||||
return (unset == other.unset) && (name == other.name) && (value == other.value);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user