diff --git a/enum.h b/enum.h index ae3e2ee..9232e9d 100644 --- a/enum.h +++ b/enum.h @@ -1313,7 +1313,7 @@ BETTER_ENUMS_CONSTEXPR_ map make_map(T (*f)(Enum)) } #define BETTER_ENUMS_DECLARE_STD_HASH(type) \ - namespace std { \ + namespace std { \ template <> struct hash \ { \ size_t operator()(const type &x) const \ @@ -1321,6 +1321,6 @@ BETTER_ENUMS_CONSTEXPR_ map make_map(T (*f)(Enum)) return std::hash()(x._to_integral()); \ } \ }; \ - } + } #endif // #ifndef BETTER_ENUMS_ENUM_H