apple-clang failed again, forcing class instead of struct

This commit is contained in:
Jordan Maples [MSFT] 2020-02-24 13:43:42 -08:00
parent 89271b89c1
commit 60372b6468

View File

@ -68,11 +68,11 @@ namespace std
// array is only used for a few constructors, so pulling the entire header is unnecessary for span. // array is only used for a few constructors, so pulling the entire header is unnecessary for span.
// The end user's logic will pull in the actual definition of array if they need it. // The end user's logic will pull in the actual definition of array if they need it.
template <class Type, std::size_t Sz> template <class Type, std::size_t Sz>
#if defined(__clang__) || defined(__APPLE__) #if defined(__clang__) && !defined(__APPLE__)
struct array; struct array;
#else #else
class array; class array;
#endif // defined(__clang__) || defined(__APPLE__) #endif // defined(__clang__) && !defined(__APPLE__)
} }
namespace gsl namespace gsl