From a2e4a6b26724f917354a5f8ba75cbcc7fa6bfab3 Mon Sep 17 00:00:00 2001 From: Lawrence Ibarria Date: Sun, 17 Dec 2023 03:57:43 +0000 Subject: [PATCH] Add override flag to MapProxy destructor, helps with warnings on new compilers --- include/hjson/hjson.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/hjson/hjson.h b/include/hjson/hjson.h index 3f794a9..8fc6127 100644 --- a/include/hjson/hjson.h +++ b/include/hjson/hjson.h @@ -367,7 +367,7 @@ class MapProxy : public Value { MapProxy(Value&&); public: - ~MapProxy(); + ~MapProxy() override; MapProxy& operator =(const MapProxy&); MapProxy& operator =(const Value&); MapProxy& operator =(Value&&);