Fixes destructor missing.
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Deukhoofd 2022-03-20 11:55:56 +01:00
parent 94ca0327ef
commit e8f4ab27b5
Signed by: Deukhoofd
GPG Key ID: F63E044490819F6F
1 changed files with 2 additions and 0 deletions

View File

@ -37,6 +37,8 @@ namespace ArbUt {
return *this;
}
~Dictionary() noexcept { delete _map; }
/// @brief Removes all items from the dictionary.
inline void Clear() noexcept { _map->clear(); }