Skip to content

Commit e80fde0

Browse files
committed
Merge branch 'develop'
2 parents 52c7c33 + 82f16e5 commit e80fde0

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

include/boost/config/compiler/clang_version.hpp

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

include/boost/config/compiler/visualc.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@
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
@@ -385,8 +385,8 @@
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)

include/boost/version.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@
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

0 commit comments

Comments
 (0)