diff options
| author | Kamen Mladenov <kamen@syndamia.com> | 2024-05-29 16:23:50 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-29 16:23:50 +0300 |
| commit | ef3226b8d5913156100def4e97b8aad5ecb5eb19 (patch) | |
| tree | 417da1b1184dfaa0f3f0556705ea1fdeb5ac44d3 /week13 | |
| parent | c902a62606d30a203728101144cbf885c1b82c2a (diff) | |
| download | oop-2023-solutions-ef3226b8d5913156100def4e97b8aad5ecb5eb19.tar oop-2023-solutions-ef3226b8d5913156100def4e97b8aad5ecb5eb19.tar.gz oop-2023-solutions-ef3226b8d5913156100def4e97b8aad5ecb5eb19.zip | |
Diffstat (limited to 'week13')
| -rw-r--r-- | week13/Exercise2/Container.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/week13/Exercise2/Container.hpp b/week13/Exercise2/Container.hpp index ace942f..5d6876d 100644 --- a/week13/Exercise2/Container.hpp +++ b/week13/Exercise2/Container.hpp @@ -11,7 +11,7 @@ protected: public: Container(); - ~Container(); + virtual ~Container(); Container(const Container& other); Container& operator=(const Container& other); Container(Container&& other); |
