From ef3b67814a071b09c5959eb293f016a3095328aa Mon Sep 17 00:00:00 2001 From: Benoit Germain Date: Tue, 15 Oct 2024 18:28:43 +0200 Subject: Fix missing virtual destructor --- src/deep.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/deep.h') 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 protected: // protected non-virtual destructor: Lanes won't manage the Factory's lifetime DeepFactory() = default; - ~DeepFactory() = default; + virtual ~DeepFactory() = default; public: // non-copyable, non-movable -- cgit v1.2.3-55-g6feb