diff options
author | whitequark <whitequark@whitequark.org> | 2020-12-19 04:14:31 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-19 04:14:31 +0000 |
commit | ab9e2f4fda1da455643579537d0ae6ffc6d46aab (patch) | |
tree | e292e0193ad5f61409c9f2581d62a036653dc93d /kernel | |
parent | eaf6b551b68f44bc31c2d4274c91944451b01649 (diff) | |
parent | d889a3df35e539b6dcfbee9c6a98461eca1a0b0e (diff) | |
download | yosys-ab9e2f4fda1da455643579537d0ae6ffc6d46aab.tar.gz yosys-ab9e2f4fda1da455643579537d0ae6ffc6d46aab.tar.bz2 yosys-ab9e2f4fda1da455643579537d0ae6ffc6d46aab.zip |
Merge pull request #2487 from whitequark/cxxrtl-outlining
CXXRTL: implement zero-cost full coverage debug information through the magic✨ of outlining🪄🎀🧹
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/rtlil.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/rtlil.h b/kernel/rtlil.h index a03e8933c..cd966b815 100644 --- a/kernel/rtlil.h +++ b/kernel/rtlil.h @@ -376,7 +376,7 @@ namespace RTLIL bool in(const std::string &rhs) const { return *this == rhs; } bool in(const pool<IdString> &rhs) const { return rhs.count(*this) != 0; } - bool isPublic() { return begins_with("\\"); } + bool isPublic() const { return begins_with("\\"); } }; namespace ID { |