summaryrefslogtreecommitdiff
path: root/libcxx/include
diff options
context:
space:
mode:
authorLouis Dionne <ldionne.2@gmail.com>2023-05-02 17:50:06 -0400
committerLouis Dionne <ldionne.2@gmail.com>2023-05-04 10:37:53 -0400
commitefc494aa4d84e120be5b36c4bc8127ff90958b25 (patch)
tree910dc9be34b1745749ba34b708bd7209cc1d8316 /libcxx/include
parente3e6bc699574550f2ed1de07f4e5bcdddaa65557 (diff)
downloadllvm-efc494aa4d84e120be5b36c4bc8127ff90958b25.tar.gz
[libc++] Add missing test for std::hash<std::filesystem::path>
Differential Revision: https://reviews.llvm.org/D149696
Diffstat (limited to 'libcxx/include')
-rw-r--r--libcxx/include/module.modulemap.in6
1 files changed, 5 insertions, 1 deletions
diff --git a/libcxx/include/module.modulemap.in b/libcxx/include/module.modulemap.in
index 99907787132b..45a22d9d4822 100644
--- a/libcxx/include/module.modulemap.in
+++ b/libcxx/include/module.modulemap.in
@@ -877,7 +877,11 @@ module std [system] {
module file_type { private header "__filesystem/file_type.h" }
module filesystem_error { private header "__filesystem/filesystem_error.h" }
module operations { private header "__filesystem/operations.h" }
- module path { private header "__filesystem/path.h" }
+ module path {
+ private header "__filesystem/path.h"
+ export functional.__functional.hash
+ export functional.__functional.unary_function
+ }
module path_iterator { private header "__filesystem/path_iterator.h" }
module perm_options { private header "__filesystem/perm_options.h" }
module perms { private header "__filesystem/perms.h" }