File tree Expand file tree Collapse file tree 3 files changed +9
-6
lines changed
Expand file tree Collapse file tree 3 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 1111
1212// https://en.wikipedia.org/wiki/Xcode#Toolchain_versions
1313
14- # if BOOST_CLANG_REPORTED_VERSION >= 160000
14+ # if BOOST_CLANG_REPORTED_VERSION >= 170000
15+ # define BOOST_CLANG_VERSION 190104
16+
17+ # elif BOOST_CLANG_REPORTED_VERSION >= 160000
1518# define BOOST_CLANG_VERSION 170006
1619
1720# elif BOOST_CLANG_REPORTED_VERSION >= 150000
Original file line number Diff line number Diff line change 372372# define BOOST_COMPILER_VERSION 14.1
373373# elif _MSC_VER < 1930
374374# define BOOST_COMPILER_VERSION 14.2
375- # elif _MSC_VER < 1940
375+ # elif _MSC_VER < 1950
376376# define BOOST_COMPILER_VERSION 14.3
377377# else
378378# define BOOST_COMPILER_VERSION _MSC_VER
385385#include < boost/config/pragma_message.hpp>
386386
387387//
388- // last known and checked version is 19.3x (VS2022):
389- #if (_MSC_VER >= 1940 )
388+ // last known and checked version is 19.4x (VS2022):
389+ #if (_MSC_VER >= 1950 )
390390# if defined(BOOST_ASSERT_CONFIG)
391391# error "Boost.Config is older than your current compiler version."
392392# elif !defined(BOOST_CONFIG_SUPPRESS_OUTDATED_MESSAGE)
Original file line number Diff line number Diff line change 1919// BOOST_VERSION / 100 % 1000 is the minor version
2020// BOOST_VERSION / 100000 is the major version
2121
22- #define BOOST_VERSION 109000
22+ #define BOOST_VERSION 109100
2323
2424//
2525// BOOST_LIB_VERSION must be defined to be the same as BOOST_VERSION
2626// but as a *string* in the form "x_y[_z]" where x is the major version
2727// number, y is the minor version number, and z is the patch level if not 0.
2828// This is used by <config/auto_link.hpp> to select which library version to link to.
2929
30- #define BOOST_LIB_VERSION " 1_90 "
30+ #define BOOST_LIB_VERSION " 1_91 "
3131
3232#endif
You can’t perform that action at this time.
0 commit comments