diff options
Diffstat (limited to 'libcxx/test/support/test.support')
3 files changed, 5 insertions, 0 deletions
diff --git a/libcxx/test/support/test.support/test_convertible_header.pass.cpp b/libcxx/test/support/test.support/test_convertible_header.pass.cpp index f2923d50cd4..fafa966bdd2 100644 --- a/libcxx/test/support/test.support/test_convertible_header.pass.cpp +++ b/libcxx/test/support/test.support/test_convertible_header.pass.cpp @@ -12,6 +12,8 @@ #include "test_convertible.hpp" +#include "test_macros.h" + struct ImplicitDefault { ImplicitDefault() {} }; diff --git a/libcxx/test/support/test.support/test_demangle.pass.cpp b/libcxx/test/support/test.support/test_demangle.pass.cpp index 2f1b16be9bb..fd67a3d61db 100644 --- a/libcxx/test/support/test.support/test_demangle.pass.cpp +++ b/libcxx/test/support/test.support/test_demangle.pass.cpp @@ -6,6 +6,7 @@ // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// +#include "test_macros.h" #include "demangle.h" #include <typeinfo> #include <cassert> diff --git a/libcxx/test/support/test.support/test_poisoned_hash_helper.pass.cpp b/libcxx/test/support/test.support/test_poisoned_hash_helper.pass.cpp index 692854b3d26..8c4d39e7bd4 100644 --- a/libcxx/test/support/test.support/test_poisoned_hash_helper.pass.cpp +++ b/libcxx/test/support/test.support/test_poisoned_hash_helper.pass.cpp @@ -15,6 +15,8 @@ #include "poisoned_hash_helper.hpp" +#include "test_macros.h" + template <class T, size_t = sizeof(T)> constexpr bool is_complete_imp(int) { return true; } template <class> constexpr bool is_complete_imp(long) { return false; } |