aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenoit Germain <benoit.germain@ubisoft.com>2024-10-15 18:28:43 +0200
committerBenoit Germain <benoit.germain@ubisoft.com>2024-10-15 18:28:43 +0200
commitef3b67814a071b09c5959eb293f016a3095328aa (patch)
tree4ecda62fd39d6e6bedadd7e3ff599779a49fe566
parentea290e120ee0069e0c4a983d49fb69fc942dc3f2 (diff)
downloadlanes-ef3b67814a071b09c5959eb293f016a3095328aa.tar.gz
lanes-ef3b67814a071b09c5959eb293f016a3095328aa.tar.bz2
lanes-ef3b67814a071b09c5959eb293f016a3095328aa.zip
Fix missing virtual destructor
-rw-r--r--src/deep.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/deep.h b/src/deep.h
index d919f64..8896698 100644
--- a/src/deep.h
+++ b/src/deep.h
@@ -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