diff options
author | Matt <mattstark75@gmail.com> | 2025-05-13 06:36:10 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-12 16:36:10 -0400 |
commit | 769c6a95aee701f09f60c6f887b16093c94786e7 (patch) | |
tree | b5efc4bd85923cf4516541b73b633ef111bf96fb /libcxx/src/filesystem/operations.cpp | |
parent | 5e94e26a7afb8db00cc123e5fc5471c1125596e3 (diff) | |
download | llvm-769c6a95aee701f09f60c6f887b16093c94786e7.zip llvm-769c6a95aee701f09f60c6f887b16093c94786e7.tar.gz llvm-769c6a95aee701f09f60c6f887b16093c94786e7.tar.bz2 |
[libc++] Fix missing #includes (#130536)
Adds missing includes that were detected when I tried to build libc++ as
a module.
Working towards #127012
Diffstat (limited to 'libcxx/src/filesystem/operations.cpp')
-rw-r--r-- | libcxx/src/filesystem/operations.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libcxx/src/filesystem/operations.cpp b/libcxx/src/filesystem/operations.cpp index 23c1c28..b71f94a 100644 --- a/libcxx/src/filesystem/operations.cpp +++ b/libcxx/src/filesystem/operations.cpp @@ -6,6 +6,7 @@ // //===----------------------------------------------------------------------===// +#include <__algorithm/copy.h> #include <__assert> #include <__config> #include <__utility/unreachable.h> |