From d23f9887014f8780f186c34256a21a56dde40823 Mon Sep 17 00:00:00 2001 From: Louis Dionne Date: Thu, 9 Nov 2023 16:41:17 -1000 Subject: [PATCH] fixup! Fix a few tests that didn't get ignored properly on Windows --- test/issues/github_202.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/issues/github_202.cpp b/test/issues/github_202.cpp index f3940e9bd..517b291ee 100644 --- a/test/issues/github_202.cpp +++ b/test/issues/github_202.cpp @@ -2,6 +2,10 @@ // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt) +#include + +#ifndef BOOST_HANA_CONFIG_CLANG_CL // EBO is not well supported on Windows + #include #include #include @@ -24,3 +28,5 @@ static_assert( , ""); int main() { } + +#endif // BOOST_HANA_CONFIG_CLANG_CL