From b54c084ac1c88fdb282ae6094609089d941be685 Mon Sep 17 00:00:00 2001 From: Xeverous <20820409+Xeverous@users.noreply.github.com> Date: Mon, 4 Mar 2019 19:19:23 +0100 Subject: [PATCH] removed tabs in unwanted places 2 lines had tabs in the middle of the code, between spaces. This can cause warnings in some tools and red markings in Git when commiting code (tabs are to be used only as the starting characters, never after any character). After this commit, there are no tabs in the file at all. --- enum.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/enum.h b/enum.h index f3598eb..6f602ec 100644 --- a/enum.h +++ b/enum.h @@ -621,8 +621,8 @@ class Enum { \ _from_integral_unchecked(_integral value); \ BETTER_ENUMS_CONSTEXPR_ static _optional \ _from_integral_nothrow(_integral value); \ - \ - BETTER_ENUMS_CONSTEXPR_ std::size_t _to_index() const; \ + \ + BETTER_ENUMS_CONSTEXPR_ std::size_t _to_index() const; \ BETTER_ENUMS_IF_EXCEPTIONS( \ BETTER_ENUMS_CONSTEXPR_ static Enum _from_index(std::size_t value); \ ) \