From c25775d717edaabde42faa8e160eb03f05cdbf2e Mon Sep 17 00:00:00 2001 From: LordMZTE Date: Sat, 5 Nov 2022 18:32:10 +0100 Subject: [PATCH] fix: add missing destructor --- src/mappings.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mappings.hpp b/src/mappings.hpp index 2284814..e3bebc5 100644 --- a/src/mappings.hpp +++ b/src/mappings.hpp @@ -11,6 +11,7 @@ public: this->mappings = mappings; this->renames = renames; } + ~Mappings() = default; static Mappings load(); std::string map(std::string inp); };