From 68ca02d1f5b369dc0e2560394358db7ffb4f84b7 Mon Sep 17 00:00:00 2001 From: Anton Bachin Date: Sun, 8 Nov 2020 08:27:20 +0300 Subject: [PATCH] Replace tab by spaces [skip ci] --- enum.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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