File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ https://www.boost.org/LICENSE_1_0.txt
1010
1111== <format>
1212
13- Format is supported when using C++20 and a compiler with appropriate support: GCC >= 13, Clang >= 18, MSVC >= 19.30
13+ Format is supported when using C++20 and a compiler with appropriate support: GCC >= 13, Clang >= 18, MSVC >= 19.40
1414
1515=== Type Modifiers
1616
Original file line number Diff line number Diff line change 77
88// Many compilers seem to have <format> with completly broken support so narrow down our support range
99#if (__cplusplus >= 202002L || (defined(_MSVC_LANG) && _MSVC_LANG >= 202002L)) && !defined(BOOST_DECIMAL_DISABLE_CLIB) && \
10- ((defined (__GNUC__) && __GNUC__ >= 13 ) || (defined (__clang__) && __clang_major__ > 17 ) || (defined (_MSC_VER) && _MSC_VER >= 1930 ))
10+ ((defined (__GNUC__) && __GNUC__ >= 13 ) || (defined (__clang__) && __clang_major__ >= 18 ) || (defined (_MSC_VER) && _MSC_VER >= 1940 ))
1111
1212#define BOOST_CRYPT_HAS_FORMAT_SUPPORT
1313
You can’t perform that action at this time.
0 commit comments