fix: add missing destructor

This commit is contained in:
LordMZTE 2022-11-05 18:32:10 +01:00
parent 162bd4f953
commit c25775d717
Signed by: LordMZTE
GPG Key ID: B64802DC33A64FF6
1 changed files with 1 additions and 0 deletions

View File

@ -11,6 +11,7 @@ public:
this->mappings = mappings;
this->renames = renames;
}
~Mappings() = default;
static Mappings load();
std::string map(std::string inp);
};