aboutsummaryrefslogtreecommitdiff
path: root/week11/Exercise08
diff options
context:
space:
mode:
authorSyndamia <kamen@syndamia.com>2024-05-10 11:33:35 +0300
committerSyndamia <kamen@syndamia.com>2024-05-10 11:33:35 +0300
commit66a5cdf79a8324019d9d34055ad212ad52504e3c (patch)
tree309d7d6acc99ef6de8cff5ad18e2533572bc348f /week11/Exercise08
parent7b19cabee8b08478f31f6e4594ed28e1d04e153c (diff)
downloadoop-2023-solutions-66a5cdf79a8324019d9d34055ad212ad52504e3c.tar
oop-2023-solutions-66a5cdf79a8324019d9d34055ad212ad52504e3c.tar.gz
oop-2023-solutions-66a5cdf79a8324019d9d34055ad212ad52504e3c.zip
[w11] Fixes for destructors
Diffstat (limited to 'week11/Exercise08')
-rw-r--r--week11/Exercise08/Link.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/week11/Exercise08/Link.h b/week11/Exercise08/Link.h
index 4acb312..4ad3f6c 100644
--- a/week11/Exercise08/Link.h
+++ b/week11/Exercise08/Link.h
@@ -9,7 +9,7 @@ class Link : public Message {
public:
Link();
- virtual ~Link() override;
+ ~Link();
Link(const Link& other);
Link& operator=(const Link& other);
Link(Link&& other);