Merge branch 'develop' of https://github.com/boostorg/config into develop

This commit is contained in:
jzmaddock
2020-07-25 19:46:34 +01:00
2 changed files with 4 additions and 4 deletions

View File

@ -12,9 +12,7 @@ rule requires ( names + )
local result ;
for name in $(names)
{
local msg = "Boost.Config Feature Check: " ;
msg += $(name) ;
result += [ check-target-builds $(config-binding:D)//$(name) $(msg:J=) : : <build>no ] ;
result += [ check-target-builds $(config-binding:D)//$(name) $(name) : : <build>no ] ;
}
return $(result) ;
}

View File

@ -125,7 +125,9 @@
//
#ifdef __clang__
#if __has_include(<memory_resource>)
#if __has_include(<compare>)
# define BOOST_LIBSTDCXX_VERSION 100100
#elif __has_include(<memory_resource>)
# define BOOST_LIBSTDCXX_VERSION 90100
#elif __has_include(<charconv>)
# define BOOST_LIBSTDCXX_VERSION 80100