aboutsummaryrefslogtreecommitdiff
path: root/lout/container.hh
diff options
context:
space:
mode:
authorRodrigo Arias Mallo <rodarima@gmail.com>2024-08-07 16:57:36 +0200
committerRodrigo Arias Mallo <rodarima@gmail.com>2024-08-07 16:57:36 +0200
commitd6e9b4ee89a4ea45eaccf65af03474e0066638ff (patch)
treee319cdf481cb58e94e75ae33432d8e450be9a085 /lout/container.hh
parentb0522d9d117bbd1e9bb3f94bff4e062a324bfce9 (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/container.hh')
-rw-r--r--lout/container.hh2
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;