Add missing override in vhdlpp
This commit is contained in:
parent
2b45f4c399
commit
44611f8301
|
|
@ -160,7 +160,7 @@ class ForGenerate : public GenerateStatement {
|
||||||
|
|
||||||
int elaborate(Entity*ent, Architecture*arc) override;
|
int elaborate(Entity*ent, Architecture*arc) override;
|
||||||
int emit(std::ostream&out, Entity*entity, 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:
|
private:
|
||||||
perm_string genvar_;
|
perm_string genvar_;
|
||||||
|
|
@ -195,7 +195,7 @@ class SignalAssignment : public Architecture::Statement {
|
||||||
|
|
||||||
virtual int elaborate(Entity*ent, Architecture*arc) override;
|
virtual int elaborate(Entity*ent, Architecture*arc) override;
|
||||||
virtual int emit(std::ostream&out, Entity*entity, 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:
|
private:
|
||||||
ExpName*lval_;
|
ExpName*lval_;
|
||||||
|
|
@ -210,7 +210,7 @@ class CondSignalAssignment : public Architecture::Statement {
|
||||||
|
|
||||||
int elaborate(Entity*ent, Architecture*arc) override;
|
int elaborate(Entity*ent, Architecture*arc) override;
|
||||||
int emit(std::ostream&out, Entity*entity, 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:
|
private:
|
||||||
ExpName*lval_;
|
ExpName*lval_;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue