From 44611f830138e67e2a8f7c314e5d8937f3289852 Mon Sep 17 00:00:00 2001 From: Cary R Date: Mon, 8 Dec 2025 20:55:00 -0800 Subject: [PATCH] Add missing override in vhdlpp --- vhdlpp/architec.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vhdlpp/architec.h b/vhdlpp/architec.h index 6dabcc2eb..ee0e76f93 100644 --- a/vhdlpp/architec.h +++ b/vhdlpp/architec.h @@ -160,7 +160,7 @@ class ForGenerate : public GenerateStatement { int elaborate(Entity*ent, Architecture*arc) override; int emit(std::ostream&out, Entity*entity, Architecture*arc) override; - void dump(std::ostream&out, int ident =0) const; + void dump(std::ostream&out, int ident =0) const override; private: perm_string genvar_; @@ -195,7 +195,7 @@ class SignalAssignment : public Architecture::Statement { virtual int elaborate(Entity*ent, Architecture*arc) override; virtual int emit(std::ostream&out, Entity*entity, Architecture*arc) override; - virtual void dump(std::ostream&out, int ident =0) const; + virtual void dump(std::ostream&out, int ident =0) const override; private: ExpName*lval_; @@ -210,7 +210,7 @@ class CondSignalAssignment : public Architecture::Statement { int elaborate(Entity*ent, Architecture*arc) override; int emit(std::ostream&out, Entity*entity, Architecture*arc) override; - void dump(std::ostream&out, int ident =0) const; + void dump(std::ostream&out, int ident =0) const override; private: ExpName*lval_;