Const correctness fix for optionlist

This commit is contained in:
AlexandreRouma
2023-03-09 15:14:33 +01:00
parent 5f0858bab2
commit 314b8bf72d
4 changed files with 25 additions and 25 deletions

View File

@ -503,7 +503,7 @@ private:
float refStep = 0.5;
struct SRCombo {
bool operator==(const SRCombo& b) {
bool operator==(const SRCombo& b) const {
return baseId == b.baseId && decimId == b.decimId;
}