From 894eab528407a3ca9bc07c792d3d025b2944a3b4 Mon Sep 17 00:00:00 2001 From: Anton Bachin Date: Mon, 19 Oct 2020 08:42:50 +0300 Subject: [PATCH] Fix some code formatting [skip ci] --- enum.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/enum.h b/enum.h index 1b8afac..ae3e2ee 100644 --- a/enum.h +++ b/enum.h @@ -406,7 +406,8 @@ continue_with(T, U value) { return value; } // Values array declaration helper. -//! Get intrinsic value of an (Enum::value) by taking advantage of C-conversion's parentheses priority +//! Get intrinsic value of an (Enum::value) by taking advantage of +// C-conversion's parentheses priority template struct _eat_assign { explicit BETTER_ENUMS_CONSTEXPR_ _eat_assign(EnumType value) : _value(value) @@ -641,7 +642,7 @@ BETTER_ENUMS_ID(GenerateSwitchType(Underlying, __VA_ARGS__)) \ \ } \ \ -class BETTER_ENUMS_CLASS_ATTRIBUTE Enum { \ +class BETTER_ENUMS_CLASS_ATTRIBUTE Enum { \ private: \ typedef ::better_enums::optional _optional; \ typedef ::better_enums::optional _optional_index; \