From ec167350b43ce29d562787cdabe3b7df2d3ca350 Mon Sep 17 00:00:00 2001 From: Clifford Wolf Date: Fri, 24 Jan 2014 15:46:41 +0100 Subject: Restored IdString::check() --- kernel/rtlil.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/rtlil.h b/kernel/rtlil.h index f7bac147..e0b3a693 100644 --- a/kernel/rtlil.h +++ b/kernel/rtlil.h @@ -101,7 +101,7 @@ namespace RTLIL return std::string(*this) < std::string(rhs); } void check() const { - //assert(empty() || (size() >= 2 && (at(0) == '$' || at(0) == '\\'))); + assert(empty() || (size() >= 2 && (at(0) == '$' || at(0) == '\\'))); } }; #endif -- cgit v1.2.3