Qt: Actually fix clang build

This commit is contained in:
Vicki Pfau 2019-01-20 23:12:15 -08:00
parent 0066503c03
commit 9b1c3e5396

View File

@ -43,7 +43,7 @@ private:
const char* id; const char* id;
int levels; int levels;
bool operator<(const ConfigSetting& other) { bool operator<(const ConfigSetting& other) const {
return name < other.name; return name < other.name;
} }
}; };
@ -54,4 +54,4 @@ private:
int m_levels; int m_levels;
}; };
} }