diff options
author | Benoit Germain <benoit.germain@ubisoft.com> | 2024-10-15 18:28:43 +0200 |
---|---|---|
committer | Benoit Germain <benoit.germain@ubisoft.com> | 2024-10-15 18:28:43 +0200 |
commit | ef3b67814a071b09c5959eb293f016a3095328aa (patch) | |
tree | 4ecda62fd39d6e6bedadd7e3ff599779a49fe566 | |
parent | ea290e120ee0069e0c4a983d49fb69fc942dc3f2 (diff) | |
download | lanes-ef3b67814a071b09c5959eb293f016a3095328aa.tar.gz lanes-ef3b67814a071b09c5959eb293f016a3095328aa.tar.bz2 lanes-ef3b67814a071b09c5959eb293f016a3095328aa.zip |
Fix missing virtual destructor
-rw-r--r-- | src/deep.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -44,7 +44,7 @@ class DeepFactory | |||
44 | protected: | 44 | protected: |
45 | // protected non-virtual destructor: Lanes won't manage the Factory's lifetime | 45 | // protected non-virtual destructor: Lanes won't manage the Factory's lifetime |
46 | DeepFactory() = default; | 46 | DeepFactory() = default; |
47 | ~DeepFactory() = default; | 47 | virtual ~DeepFactory() = default; |
48 | 48 | ||
49 | public: | 49 | public: |
50 | // non-copyable, non-movable | 50 | // non-copyable, non-movable |