Open Iximiel opened 1 year ago
bool ActionRegister::check(const std::string & key) { if(m.count(key)>0 && mk.count(key)>0) return true; return false; }
should be changed to
bool ActionRegister::check(const std::string & key) { return m.count(key)>0 && mk.count(key)>0 }
should be changed to