projects
/
yosys.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d8300d1
)
Restored IdString::check()
author
Clifford Wolf
<clifford@clifford.at>
Fri, 24 Jan 2014 14:46:41 +0000
(15:46 +0100)
committer
Clifford Wolf
<clifford@clifford.at>
Fri, 24 Jan 2014 14:46:41 +0000
(15:46 +0100)
kernel/rtlil.h
patch
|
blob
|
history
diff --git
a/kernel/rtlil.h
b/kernel/rtlil.h
index f7bac14711ef59c361d9f69095f1606f701068c5..e0b3a693d6172248c6230545467379679addf929 100644
(file)
--- 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