1
0
Fork 0

Mark a function const

This commit is contained in:
krcroft 2020-03-31 10:53:30 -07:00 committed by Patryk Obara
parent 3df2734b52
commit 3aa27e0491

View file

@ -130,7 +130,9 @@ public:
Bits GetValue() {
return current_value;
}
const char * GetName() const { return entry; }
const char * GetName(void) const {
return entry;
}
virtual bool IsTrigger() = 0;
CBindList bindlist;
protected: