is_likely_lambda.hpp: Allow use of the workaround for msvc-14.0.

Note that 14.0 update 3 doesn't require this, but update 2 and earlier do.
This commit is contained in:
jzmaddock
2018-02-21 18:30:50 +00:00
parent 5240cd67d8
commit e5003ad808

View File

@ -27,7 +27,7 @@ struct is_likely_stateless_lambda : public false_type {};
}}
#elif !defined(BOOST_NO_CXX11_LAMBDAS) && !defined(BOOST_NO_CXX11_DECLTYPE) && !defined(BOOST_NO_CXX11_TEMPLATE_ALIASES) && !defined(BOOST_MSVC)
#elif !defined(BOOST_NO_CXX11_LAMBDAS) && !defined(BOOST_NO_CXX11_DECLTYPE) && !defined(BOOST_NO_CXX11_TEMPLATE_ALIASES) && !BOOST_WORKAROUND(BOOST_MSVC, < 1900)
#include <boost/type_traits/is_convertible.hpp>
#include <boost/core/enable_if.hpp>