forked from boostorg/config
Incorrect MSVC version detection
I know, Boost doesn't support MSVC 5.0 and 6.0. But the expression is invalid. Another way to fix it: ```c++ # if _MSC_VER < 1300 // Note: Versions up to 7.0 aren't supported. # define BOOST_COMPILER_VERSION 6.0 # elif _MSC_VER < 1310 # define BOOST_COMPILER_VERSION 7.0 ```
This commit is contained in:
@@ -289,7 +289,7 @@
|
|||||||
# endif
|
# endif
|
||||||
# endif
|
# endif
|
||||||
# else
|
# else
|
||||||
# if _MSC_VER < 1310
|
# if _MSC_VER < 1200
|
||||||
// Note: Versions up to 7.0 aren't supported.
|
// Note: Versions up to 7.0 aren't supported.
|
||||||
# define BOOST_COMPILER_VERSION 5.0
|
# define BOOST_COMPILER_VERSION 5.0
|
||||||
# elif _MSC_VER < 1300
|
# elif _MSC_VER < 1300
|
||||||
|
Reference in New Issue
Block a user