diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-08-07 16:57:36 +0200 |
---|---|---|
committer | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-08-07 16:57:36 +0200 |
commit | d6e9b4ee89a4ea45eaccf65af03474e0066638ff (patch) | |
tree | e319cdf481cb58e94e75ae33432d8e450be9a085 /lout | |
parent | b0522d9d117bbd1e9bb3f94bff4e062a324bfce9 (diff) |
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
Diffstat (limited to 'lout')
-rw-r--r-- | lout/container.hh | 2 |
1 files changed, 1 insertions, 1 deletions
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; |