3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-06-09 15:43:25 +00:00

Restored IdString::check()

This commit is contained in:
Clifford Wolf 2014-01-24 15:46:41 +01:00
parent d8300d1fb8
commit ec167350b4

View file

@ -101,7 +101,7 @@ namespace RTLIL
return std::string(*this) < std::string(rhs); return std::string(*this) < std::string(rhs);
} }
void check() const { void check() const {
//assert(empty() || (size() >= 2 && (at(0) == '$' || at(0) == '\\'))); assert(empty() || (size() >= 2 && (at(0) == '$' || at(0) == '\\')));
} }
}; };
#endif #endif