diff options
author | Kae <80987908+Novaenia@users.noreply.github.com> | 2023-07-12 18:17:18 +1000 |
---|---|---|
committer | Kae <80987908+Novaenia@users.noreply.github.com> | 2023-07-12 18:17:18 +1000 |
commit | a928ae9e50075f15cfd209d28965dd63d0aa618a (patch) | |
tree | 39695e3b6cd413f063df47c2e7bd689ed2f5ceb0 /source/core | |
parent | 81343bc06fc08d8a3ba441e6038c9be1ed093fdc (diff) | |
parent | e543fe5ef0358bbc25bd9acdde971919a1c14f1a (diff) |
Merge branch 'main' into voice
Diffstat (limited to 'source/core')
-rw-r--r-- | source/core/StarHash.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/core/StarHash.hpp b/source/core/StarHash.hpp index 0e3f67c..7ad942f 100644 --- a/source/core/StarHash.hpp +++ b/source/core/StarHash.hpp @@ -73,7 +73,7 @@ public: }; template <typename EnumType> -class hash<EnumType, typename std::enable_if<std::is_enum<EnumType>::value>::type> { +struct hash<EnumType, typename std::enable_if<std::is_enum<EnumType>::value>::type> { private: typedef typename std::underlying_type<EnumType>::type UnderlyingType; |