aboutsummaryrefslogtreecommitdiffstats
path: root/backends/cxxrtl/cxxrtl_vcd.h
diff options
context:
space:
mode:
authorwhitequark <whitequark@whitequark.org>2021-01-26 21:55:12 +0000
committerGitHub <noreply@github.com>2021-01-26 21:55:12 +0000
commita77fa6709ba893deb30d962618ffa7d5828e74d5 (patch)
tree9b7e90a54ec9ea940363f86a73afd8cef324770d /backends/cxxrtl/cxxrtl_vcd.h
parentd73ffa07f2fccc0da396276955f64648becab173 (diff)
parent4b6e764c462047561ddc32b0638c21d773a4fbe4 (diff)
downloadyosys-a77fa6709ba893deb30d962618ffa7d5828e74d5.tar.gz
yosys-a77fa6709ba893deb30d962618ffa7d5828e74d5.tar.bz2
yosys-a77fa6709ba893deb30d962618ffa7d5828e74d5.zip
Merge pull request #2563 from whitequark/cxxrtl-msvc
cxxrtl: do not use `->template` for non-dependent names
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;
});
}