mirror of
https://github.com/boostorg/charconv.git
synced 2026-02-08 22:52:27 +00:00
Additional workaround for latest version of MSVC 14.3
This commit is contained in:
@@ -103,7 +103,7 @@ static_assert((BOOST_CHARCONV_ENDIAN_BIG_BYTE || BOOST_CHARCONV_ENDIAN_LITTLE_BY
|
||||
#endif
|
||||
|
||||
// Workaround for errors in MSVC 14.3 with gotos in if constexpr blocks
|
||||
#if defined(_MSC_VER) && _MSC_VER == 1933
|
||||
#if defined(_MSC_VER) && (_MSC_VER == 1933 || _MSC_VER == 1934)
|
||||
# define BOOST_CHARCONV_IF_CONSTEXPR if
|
||||
#else
|
||||
# define BOOST_CHARCONV_IF_CONSTEXPR BOOST_IF_CONSTEXPR
|
||||
|
||||
Reference in New Issue
Block a user