From 0c21be04072c0df79a4b0a545e8854f2645624cd Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Tue, 23 Nov 2021 19:22:21 +0000 Subject: [PATCH] Correct two phase lookup config for msvc-14.3. --- include/boost/config/compiler/visualc.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/config/compiler/visualc.hpp b/include/boost/config/compiler/visualc.hpp index 9ec4a51c..4859c7c8 100644 --- a/include/boost/config/compiler/visualc.hpp +++ b/include/boost/config/compiler/visualc.hpp @@ -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