aboutsummaryrefslogtreecommitdiffstats
path: root/backends/cxxrtl/cxxrtl_vcd.h
diff options
context:
space:
mode:
authorwhitequark <whitequark@whitequark.org>2021-01-26 17:42:23 +0000
committerwhitequark <whitequark@whitequark.org>2021-01-26 18:09:53 +0000
commit4b6e764c462047561ddc32b0638c21d773a4fbe4 (patch)
treebfb7d94e798ffea3e259451097413b183df49992 /backends/cxxrtl/cxxrtl_vcd.h
parent8eaeaa8434681403d12ac5d6a9761d3720b4ef98 (diff)
downloadyosys-4b6e764c462047561ddc32b0638c21d773a4fbe4.tar.gz
yosys-4b6e764c462047561ddc32b0638c21d773a4fbe4.tar.bz2
yosys-4b6e764c462047561ddc32b0638c21d773a4fbe4.zip
cxxrtl: do not use `->template` for non-dependent names.
This breaks build on MSVC but not GCC/Clang.
Diffstat (limited to 'backends/cxxrtl/cxxrtl_vcd.h')
-rw-r--r--backends/cxxrtl/cxxrtl_vcd.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/cxxrtl/cxxrtl_vcd.h b/backends/cxxrtl/cxxrtl_vcd.h
index 6ee98b428..3f40a8d12 100644
--- a/backends/cxxrtl/cxxrtl_vcd.h
+++ b/backends/cxxrtl/cxxrtl_vcd.h
@@ -228,13 +228,13 @@ public:
}
void add(const debug_items &items) {
- this->template add(items, [](const std::string &, const debug_item &) {
+ this->add(items, [](const std::string &, const debug_item &) {
return true;
});
}
void add_without_memories(const debug_items &items) {
- this->template add(items, [](const std::string &, const debug_item &item) {
+ this->add(items, [](const std::string &, const debug_item &item) {
return item.type != debug_item::MEMORY;
});
}