在MSVC 15.3.3(VS 2017)上使用Boost进行编译时未知的编译器版本

时间:2017-09-05 11:40:51

标签: boost visual-studio-2017

有一个类似的问题here所以这个问题的答案可能会被合并或其他什么。

我正在使用最新的Visual Studio 2017版本,当我使用Boost库编译时,我收到警告。提出警告的代码:

//
// last known and checked version is 19.10.25017 (VC++ 2017):
#if (_MSC_VER > 1910)
#  if defined(BOOST_ASSERT_CONFIG)
#     error "Unknown compiler version - please run the configure tests and report the results"
#  else
#     pragma message("Unknown compiler version - please run the configure tests and report the results")
#  endif
#endif

在我的计算机_MSC_VER1911。我使用 1.65 版本的 Boost 。这容易解决吗?

感谢。

1 个答案:

答案 0 :(得分:0)

只是为了让每个人都知道最新版本 1.65.1 解决了这个问题:

http://www.boost.org/users/history/version_1_65_1.html