Correct two phase lookup config for msvc-14.3.

This commit is contained in:
jzmaddock
2021-11-23 19:22:21 +00:00
parent 77df5deb6e
commit 0c21be0407

View File

@ -236,7 +236,7 @@
// if this is in effect or not, in any case nothing in Boost is currently using this, so we'll just go
// on defining it for now:
//
#if _MSC_FULL_VER < 193030705
#if (_MSC_FULL_VER < 193030705) || (_MSVC_LANG < 202004)
# define BOOST_NO_TWO_PHASE_NAME_LOOKUP
#endif