Fix some long lines

This commit is contained in:
Anton Bachin 2019-04-02 09:49:47 -05:00
parent b838852ff4
commit ebc0c0138e

6
enum.h
View File

@ -937,9 +937,11 @@ operator >>(std::basic_istream<Char, Traits>& stream, Enum &value) \
#if defined(_MSC_VER) && _MSC_VER >= 1700 #if defined(_MSC_VER) && _MSC_VER >= 1700
// VS 2012 and above fully support strongly typed enums and will warn about // VS 2012 and above fully support strongly typed enums and will warn about
// incorrect usage. // incorrect usage.
# define BETTER_ENUMS_LEGACY_UNDERLYING_TYPE(Underlying) BETTER_ENUMS_CXX11_UNDERLYING_TYPE(Underlying) # define BETTER_ENUMS_LEGACY_UNDERLYING_TYPE(Underlying) \
BETTER_ENUMS_CXX11_UNDERLYING_TYPE(Underlying)
#else #else
# define BETTER_ENUMS_LEGACY_UNDERLYING_TYPE(Underlying) BETTER_ENUMS_CXX98_UNDERLYING_TYPE(Underlying) # define BETTER_ENUMS_LEGACY_UNDERLYING_TYPE(Underlying) \
BETTER_ENUMS_CXX98_UNDERLYING_TYPE(Underlying)
#endif #endif
// C++98, C++11 // C++98, C++11