Skip to content

Commit 37a0c24

Browse files
committed
Update build requirements
1 parent 56554af commit 37a0c24

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

doc/decimal/format.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

include/boost/decimal/format.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
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

0 commit comments

Comments
 (0)