mirror of
https://github.com/microsoft/GSL.git
synced 2024-11-03 17:56:43 -05:00
fixed a couple typos
This commit is contained in:
parent
2f9d873043
commit
6ef56d73da
@ -48,7 +48,7 @@ static_assert(!std::is_convertible<Derived (*)[], Base (*)[]>::value,
|
|||||||
// Filtering g++ version < 8, clang version < 7, and Apple clang versions 9.4 and 10.1.
|
// Filtering g++ version < 8, clang version < 7, and Apple clang versions 9.4 and 10.1.
|
||||||
#if (defined(_MSC_VER)) || \
|
#if (defined(_MSC_VER)) || \
|
||||||
(defined(__GNUC__) && __GNUC__ > 7) || \
|
(defined(__GNUC__) && __GNUC__ > 7) || \
|
||||||
(defined(__APPLE__) && defined(__clang__) && (!(__clang_major__ == 9 && __clang_minor == 4) && !(__clang_major__ == 10 && __clang_minro__ == 1))) || \
|
(defined(__APPLE__) && defined(__clang__) && (!(__clang_major__ == 9 && __clang_minor__ == 4) && !(__clang_major__ == 10 && __clang_minor__ == 1))) || \
|
||||||
(defined(__clang__) && __clang_major__ > 6)
|
(defined(__clang__) && __clang_major__ > 6)
|
||||||
template <class = void>
|
template <class = void>
|
||||||
void ArrayConvertibilityCheck()
|
void ArrayConvertibilityCheck()
|
||||||
|
Loading…
Reference in New Issue
Block a user