diff options
-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; |