From bac4a9b67fd34cdca7cf4282da64a3b40a31c7b8 Mon Sep 17 00:00:00 2001 From: Eric Fiselier Date: Wed, 21 Nov 2018 20:39:24 +0000 Subject: [PATCH] Fix missing includes in test header git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@347416 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/support/counting_predicates.hpp | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/test/support/counting_predicates.hpp b/test/support/counting_predicates.hpp index 050b51b75..a0b3ca518 100644 --- a/test/support/counting_predicates.hpp +++ b/test/support/counting_predicates.hpp @@ -7,9 +7,10 @@ // //===----------------------------------------------------------------------===// -#ifndef __COUNTING_PREDICATES_H -#define __COUNTING_PREDICATES_H +#ifndef TEST_SUPPORT_COUNTING_PREDICATES_H +#define TEST_SUPPORT_COUNTING_PREDICATES_H +#include template struct unary_counting_predicate { @@ -27,7 +28,7 @@ public: private: Predicate p_; mutable size_t count_; - }; +}; template @@ -47,6 +48,6 @@ public: private: Predicate p_; mutable size_t count_; - }; +}; -#endif // __COUNTING_PREDICATES_H +#endif // TEST_SUPPORT_COUNTING_PREDICATES_H