Skip to content

Commit

Permalink
removed tabs in unwanted places (#72)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Xeverous authored and aantron committed Mar 11, 2019
1 parent ed21395 commit aef4ea4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions enum.h
Original file line number Diff line number Diff line change
Expand Up @@ -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); \
) \
Expand Down

0 comments on commit aef4ea4

Please sign in to comment.