Browse Source

[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
Louis Dionne 6 years ago
parent
commit
c8f785547c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      test/std/containers/Emplaceable.h

+ 1 - 1
test/std/containers/Emplaceable.h

@@ -10,7 +10,7 @@
 #ifndef EMPLACEABLE_H
 #define EMPLACEABLE_H
 
-#include <utility>
+#include <functional>
 #include "test_macros.h"
 
 #if TEST_STD_VER >= 11