FbTk/XrmDatabaseHelper.hh: operator== can be const.
Found with cppcheck.
This commit is contained in:
parent
d70bdbe675
commit
85596c1ee2
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ public:
|
|||
}
|
||||
}
|
||||
|
||||
bool operator == (const XrmDatabase& database) { return m_database == database; }
|
||||
bool operator == (const XrmDatabase& database) const { return m_database == database; }
|
||||
XrmDatabase & operator*() { return m_database; }
|
||||
|
||||
private:
|
||||
|
|
Loading…
Reference in a new issue