another test

This commit is contained in:
Jordan Maples 2020-04-09 15:56:26 -07:00
parent 8d907dadfb
commit 5ca02327c4

View File

@ -48,8 +48,8 @@ static_assert(!std::is_convertible<Derived (*)[], Base (*)[]>::value,
// Filtering g++ version < 8, clang version < 7, and XCode 9.4 and 10.1 which looks to be Apple clang versions 9.1 and 10.0. // Filtering g++ version < 8, clang version < 7, and XCode 9.4 and 10.1 which looks to be Apple clang versions 9.1 and 10.0.
#if (defined(_MSC_VER)) || \ #if (defined(_MSC_VER)) || \
(defined(__GNUC__) && __GNUC__ > 7) || \ (defined(__GNUC__) && __GNUC__ > 7) || \
(defined(__apple_build_version__) && defined(__clang__) && __clang_major__ > 10 ) || \ (defined(__APPLE__) && defined(__clang_major__) && __clang_major__ > 10 ) || \
(defined(__clang__) && __clang_major__ > 6) (!defined(__APPLE__) && defined(__clang__) && __clang_major__ > 6)
template <class = void> template <class = void>
void ArrayConvertibilityCheck() void ArrayConvertibilityCheck()
{ {