Skip to content

Commit 44611f8

Browse files
committed
Add missing override in vhdlpp
1 parent 2b45f4c commit 44611f8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

vhdlpp/architec.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ class ForGenerate : public GenerateStatement {
160160

161161
int elaborate(Entity*ent, Architecture*arc) override;
162162
int emit(std::ostream&out, Entity*entity, Architecture*arc) override;
163-
void dump(std::ostream&out, int ident =0) const;
163+
void dump(std::ostream&out, int ident =0) const override;
164164

165165
private:
166166
perm_string genvar_;
@@ -195,7 +195,7 @@ class SignalAssignment : public Architecture::Statement {
195195

196196
virtual int elaborate(Entity*ent, Architecture*arc) override;
197197
virtual int emit(std::ostream&out, Entity*entity, Architecture*arc) override;
198-
virtual void dump(std::ostream&out, int ident =0) const;
198+
virtual void dump(std::ostream&out, int ident =0) const override;
199199

200200
private:
201201
ExpName*lval_;
@@ -210,7 +210,7 @@ class CondSignalAssignment : public Architecture::Statement {
210210

211211
int elaborate(Entity*ent, Architecture*arc) override;
212212
int emit(std::ostream&out, Entity*entity, Architecture*arc) override;
213-
void dump(std::ostream&out, int ident =0) const;
213+
void dump(std::ostream&out, int ident =0) const override;
214214

215215
private:
216216
ExpName*lval_;

0 commit comments

Comments
 (0)