From c8f785547c46a012742c2acae6a08d71aabd500c Mon Sep 17 00:00:00 2001 From: Louis Dionne Date: Mon, 19 Nov 2018 17:40:16 +0000 Subject: [PATCH] [libcxx] Fix incorrect #include for std::hash Reviewed as https://reviews.llvm.org/D54705. Thanks to Andrey Maksimov for the patch. git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@347233 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/std/containers/Emplaceable.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/std/containers/Emplaceable.h b/test/std/containers/Emplaceable.h index 331a81ff3..04b1f8543 100644 --- a/test/std/containers/Emplaceable.h +++ b/test/std/containers/Emplaceable.h @@ -10,7 +10,7 @@ #ifndef EMPLACEABLE_H #define EMPLACEABLE_H -#include +#include #include "test_macros.h" #if TEST_STD_VER >= 11