From 32e5fea6ac56a6a9a458d20d1fedf8170bc6b61b Mon Sep 17 00:00:00 2001 From: "Jordan Maples [MSFT]" <49793787+JordanMaples@users.noreply.github.com> Date: Mon, 24 Feb 2020 14:47:45 -0800 Subject: [PATCH] test --- include/gsl/span | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/include/gsl/span b/include/gsl/span index 7484f38..fc1677e 100644 --- a/include/gsl/span +++ b/include/gsl/span @@ -69,11 +69,14 @@ namespace std // The end user's logic will pull in the actual definition of array if they need it. template #if defined(__clang__) -struct \ + #if defined(__APPLE__) -_LIBCPP_TYPE_VIS_ONLY \ +#define VIS_MOD _LIBCPP_TYPE_VIS_ONLY +#else +#define VIS_MOD #endif -array; + +struct VIS_MOD array; #else class array; #endif // defined(__clang__)