[libcxx] r347233 - [libcxx] Fix incorrect #include for std::hash

Louis Dionne ldionne at apple.com
Mon Nov 19 09:40:16 PST 2018


Author: ldionne
Date: Mon Nov 19 09:40:16 2018
New Revision: 347233

URL: http://llvm.org/viewvc/llvm-project?rev=347233&view=rev
Log:
[libcxx] Fix incorrect #include for std::hash

Reviewed as https://reviews.llvm.org/D54705.
Thanks to Andrey Maksimov for the patch.

Modified:
    libcxx/trunk/test/std/containers/Emplaceable.h

Modified: libcxx/trunk/test/std/containers/Emplaceable.h
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/containers/Emplaceable.h?rev=347233&r1=347232&r2=347233&view=diff
==============================================================================
--- libcxx/trunk/test/std/containers/Emplaceable.h (original)
+++ libcxx/trunk/test/std/containers/Emplaceable.h Mon Nov 19 09:40:16 2018
@@ -10,7 +10,7 @@
 #ifndef EMPLACEABLE_H
 #define EMPLACEABLE_H
 
-#include <utility>
+#include <functional>
 #include "test_macros.h"
 
 #if TEST_STD_VER >= 11




More information about the libcxx-commits mailing list