1
0
Fork 0

adding children doen't need to be virtual

This commit is contained in:
Kevin Matz 2023-05-15 11:20:47 -04:00
parent f0d5556230
commit 64901a27cb
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ public:
explicit Method(Method *parent = nullptr, std::string name = "");
virtual ~Method();
virtual void addChild(Method *child);
void addChild(Method *child);
std::string address() const;
std::string name() const;