Merge pull request #2523 from tomverbeure/define_synthesis
[yosys.git] / backends / cxxrtl / cxxrtl_vcd.h
index 6ee98b4284db16080b45054f50b400be70e677bc..3f40a8d122d4e409412e6a87318d82c60ddbdfa7 100644 (file)
@@ -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;
                });
        }