From d6e9b4ee89a4ea45eaccf65af03474e0066638ff Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Wed, 7 Aug 2024 16:57:36 +0200 Subject: Avoid C++11 default keyword While we still require C++11 for the macros, there is no need to add another dependency for this case. Reported-by: dogma --- lout/container.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lout') diff --git a/lout/container.hh b/lout/container.hh index 5bddbe63..70f3d304 100644 --- a/lout/container.hh +++ b/lout/container.hh @@ -251,7 +251,7 @@ protected: { object::Object *object; Node *next; - virtual ~Node() = default; + virtual ~Node() {}; }; Node **table; -- cgit v1.2.3