有一个类似的问题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_VER
上1911
。我使用 1.65 版本的 Boost 。这容易解决吗?
感谢。
答案 0 :(得分:0)
只是为了让每个人都知道最新版本 1.65.1 解决了这个问题: