From 251d9484388849090e916ce525b739b10570c19d Mon Sep 17 00:00:00 2001 From: neargye Date: Wed, 10 Jul 2019 18:08:53 +0500 Subject: [PATCH] fix formatting --- include/magic_enum.hpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/magic_enum.hpp b/include/magic_enum.hpp index ad4a0a1..7d9d6a8 100644 --- a/include/magic_enum.hpp +++ b/include/magic_enum.hpp @@ -190,19 +190,19 @@ template return entries; } -template +template using enable_if_enum_t = std::enable_if_t>>; -template> +template > struct is_scoped_enum_impl : std::false_type {}; -template +template struct is_scoped_enum_impl : std::bool_constant>> {}; -template> +template > struct is_unscoped_enum_impl : std::false_type {}; -template +template struct is_unscoped_enum_impl : std::bool_constant>> {}; } // namespace magic_enum::detail