diff options
Diffstat (limited to 'source/core/StarLua.hpp')
-rw-r--r-- | source/core/StarLua.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source/core/StarLua.hpp b/source/core/StarLua.hpp index 57afb98..fa777c2 100644 --- a/source/core/StarLua.hpp +++ b/source/core/StarLua.hpp @@ -1050,6 +1050,9 @@ struct LuaContainerConverter { template <typename T, typename Allocator> struct LuaConverter<List<T, Allocator>> : LuaContainerConverter<List<T, Allocator>> {}; +template <typename T, typename Allocator, typename Equals> +struct LuaConverter<HashSet<T, Allocator, Equals>> : LuaContainerConverter<HashSet<T, Allocator, Equals>> {}; + template <typename T, size_t MaxSize> struct LuaConverter<StaticList<T, MaxSize>> : LuaContainerConverter<StaticList<T, MaxSize>> {}; |