mirror of
https://github.com/aantron/better-enums.git
synced 2025-12-06 08:46:42 +08:00
Fix some long lines
This commit is contained in:
parent
b838852ff4
commit
ebc0c0138e
6
enum.h
6
enum.h
@ -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
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user