aboutsummaryrefslogtreecommitdiff
path: root/libcxx/src/filesystem/operations.cpp
diff options
context:
space:
mode:
authorLouis Dionne <ldionne.2@gmail.com>2024-09-05 12:39:05 -0400
committerLouis Dionne <ldionne.2@gmail.com>2024-09-05 12:41:20 -0400
commit953af0e7f1bcb42136be1a0ea9cdd5aa1fb74852 (patch)
tree1e7ec771e2a116e79a2fe60f38073c6d4a6fc92b /libcxx/src/filesystem/operations.cpp
parent2ed510dc9789ca0b9172f0593527bee9d53496c4 (diff)
downloadllvm-953af0e7f1bcb42136be1a0ea9cdd5aa1fb74852.zip
llvm-953af0e7f1bcb42136be1a0ea9cdd5aa1fb74852.tar.gz
llvm-953af0e7f1bcb42136be1a0ea9cdd5aa1fb74852.tar.bz2
[libc++][NFC] Increase consistency for namespace closing comments
Diffstat (limited to 'libcxx/src/filesystem/operations.cpp')
-rw-r--r--libcxx/src/filesystem/operations.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/libcxx/src/filesystem/operations.cpp b/libcxx/src/filesystem/operations.cpp
index a83c1ae..d771f20 100644
--- a/libcxx/src/filesystem/operations.cpp
+++ b/libcxx/src/filesystem/operations.cpp
@@ -254,7 +254,7 @@ bool copy_file_impl(FileDescriptor& read_fd, FileDescriptor& write_fd, error_cod
#endif // copy_file_impl implementation
} // end anonymous namespace
-} // end namespace detail
+} // namespace detail
bool __copy_file(const path& from, const path& to, copy_options options, error_code* ec) {
using detail::FileDescriptor;
@@ -732,7 +732,7 @@ uintmax_t remove_all_impl(path const& p, error_code& ec) {
return count;
}
-} // end namespace
+} // namespace
uintmax_t __remove_all(const path& p, error_code* ec) {
ErrorHandler<uintmax_t> err("remove_all", ec, &p);
@@ -827,7 +827,7 @@ uintmax_t remove_all_impl(int parent_directory, const path& p, error_code& ec) {
return 0;
}
-} // end namespace
+} // namespace
uintmax_t __remove_all(const path& p, error_code* ec) {
ErrorHandler<uintmax_t> err("remove_all", ec, &p);