3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-05 17:14:08 +00:00

kernel: IdString::in(const IdString &) as per @Tjoppen

This commit is contained in:
Eddie Hung 2020-04-01 14:10:24 -07:00
parent 18d85b88ae
commit 2d86563bb2

View file

@ -369,7 +369,7 @@ namespace RTLIL
return result;
}
bool in(IdString rhs) const { return *this == rhs; }
bool in(const IdString &rhs) const { return *this == rhs; }
bool in(const char *rhs) const { return *this == rhs; }
bool in(const std::string &rhs) const { return *this == rhs; }
bool in(const pool<IdString> &rhs) const { return rhs.count(*this) != 0; }