[libcxx-commits] [libcxx] fcc0964 - Revert "[libc++] Remove unused headers from <filesystem>"

Nikolas Klauser via libcxx-commits libcxx-commits at lists.llvm.org
Thu Dec 23 02:57:01 PST 2021


Author: Nikolas Klauser
Date: 2021-12-23T11:55:38+01:00
New Revision: fcc0964ed43ed6430dec42ad89526463d08dc1d4

URL: https://github.com/llvm/llvm-project/commit/fcc0964ed43ed6430dec42ad89526463d08dc1d4
DIFF: https://github.com/llvm/llvm-project/commit/fcc0964ed43ed6430dec42ad89526463d08dc1d4.diff

LOG: Revert "[libc++] Remove unused headers from <filesystem>"

This reverts commit 352945dd36c64fd68b4c73fcc393ee5828da639a.

Added: 
    

Modified: 
    libcxx/include/filesystem
    libcxx/src/filesystem/directory_iterator.cpp
    libcxx/src/filesystem/filesystem_common.h
    libcxx/test/libcxx/input.output/filesystems/convert_file_time.pass.cpp
    libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/comparisons.pass.cpp
    libcxx/test/std/input.output/filesystems/class.directory_iterator/types.pass.cpp
    libcxx/test/std/input.output/filesystems/class.filesystem_error/filesystem_error.members.pass.cpp
    libcxx/test/std/input.output/filesystems/class.path/path.member/path.assign/copy.pass.cpp
    libcxx/test/std/input.output/filesystems/class.path/path.member/path.assign/move.pass.cpp
    libcxx/test/std/input.output/filesystems/class.path/path.member/path.construct/copy.pass.cpp
    libcxx/test/std/input.output/filesystems/class.path/path.member/path.construct/move.pass.cpp
    libcxx/test/std/input.output/filesystems/class.path/synop.pass.cpp
    libcxx/test/support/filesystem_test_helper.h

Removed: 
    


################################################################################
diff  --git a/libcxx/include/filesystem b/libcxx/include/filesystem
index 6203b9a123ccc..09d90614aa0d3 100644
--- a/libcxx/include/filesystem
+++ b/libcxx/include/filesystem
@@ -254,9 +254,32 @@ inline constexpr bool std::ranges::enable_view<std::filesystem::recursive_direct
 #include<__filesystem/recursive_directory_iterator.h>
 #include<__filesystem/space_info.h>
 #include<__filesystem/u8path.h>
+
+#include <__availability>
+#include <__config>
+#include <__debug>
+#include <__ranges/enable_borrowed_range.h>
+#include <__ranges/enable_view.h>
+#include <__utility/forward.h>
+#include <chrono>
 #include <compare>
+#include <cstddef>
+#include <cstdlib>
+#include <iosfwd>
+#include <iterator>
+#include <memory>
+#include <stack>
+#include <string>
+#include <string_view>
+#include <system_error>
+#include <utility>
 #include <version>
 
+#if !defined(_LIBCPP_HAS_NO_LOCALIZATION)
+# include <locale>
+# include <iomanip> // for quoted
+#endif
+
 #if defined(_LIBCPP_HAS_NO_FILESYSTEM_LIBRARY)
 # error "The Filesystem library is not supported since libc++ has been configured with LIBCXX_ENABLE_FILESYSTEM disabled"
 #endif

diff  --git a/libcxx/src/filesystem/directory_iterator.cpp b/libcxx/src/filesystem/directory_iterator.cpp
index 90b255d9877f9..6219ceafd36ea 100644
--- a/libcxx/src/filesystem/directory_iterator.cpp
+++ b/libcxx/src/filesystem/directory_iterator.cpp
@@ -6,9 +6,8 @@
 //
 //===----------------------------------------------------------------------===//
 
-#include "__config"
 #include "filesystem"
-#include "stack"
+#include "__config"
 #if defined(_LIBCPP_WIN32API)
 #define WIN32_LEAN_AND_MEAN
 #define NOMINMAX

diff  --git a/libcxx/src/filesystem/filesystem_common.h b/libcxx/src/filesystem/filesystem_common.h
index 717894e537d24..a2c340e61083c 100644
--- a/libcxx/src/filesystem/filesystem_common.h
+++ b/libcxx/src/filesystem/filesystem_common.h
@@ -17,7 +17,6 @@
 #include "cstdlib"
 #include "ctime"
 #include "filesystem"
-#include "system_error"
 
 #if !defined(_LIBCPP_WIN32API)
 # include <unistd.h>

diff  --git a/libcxx/test/libcxx/input.output/filesystems/convert_file_time.pass.cpp b/libcxx/test/libcxx/input.output/filesystems/convert_file_time.pass.cpp
index bbeaedd51f22e..f93737c2372df 100644
--- a/libcxx/test/libcxx/input.output/filesystems/convert_file_time.pass.cpp
+++ b/libcxx/test/libcxx/input.output/filesystems/convert_file_time.pass.cpp
@@ -14,13 +14,12 @@
 
 // ADDITIONAL_COMPILE_FLAGS: -I %S/../../../../src/filesystem
 
-#include <cassert>
-#include <chrono>
-#include <cstddef>
 #include <filesystem>
-#include <limits>
-#include <string>
+#include <chrono>
 #include <type_traits>
+#include <limits>
+#include <cstddef>
+#include <cassert>
 
 #include "filesystem_common.h"
 

diff  --git a/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/comparisons.pass.cpp b/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/comparisons.pass.cpp
index f7e5770a7cd73..e71d4e24664a7 100644
--- a/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/comparisons.pass.cpp
+++ b/libcxx/test/std/input.output/filesystems/class.directory_entry/directory_entry.obs/comparisons.pass.cpp
@@ -19,10 +19,10 @@
 // bool operator> (directory_entry const&) const noexcept;
 // bool operator>=(directory_entry const&) const noexcept;
 
+
 #include "filesystem_include.h"
-#include <cassert>
 #include <type_traits>
-#include <utility>
+#include <cassert>
 
 #include "test_macros.h"
 

diff  --git a/libcxx/test/std/input.output/filesystems/class.directory_iterator/types.pass.cpp b/libcxx/test/std/input.output/filesystems/class.directory_iterator/types.pass.cpp
index 403d1ae338dd9..97b5d23d9dbb8 100644
--- a/libcxx/test/std/input.output/filesystems/class.directory_iterator/types.pass.cpp
+++ b/libcxx/test/std/input.output/filesystems/class.directory_iterator/types.pass.cpp
@@ -19,9 +19,8 @@
 // typedef ... iterator_category
 
 #include "filesystem_include.h"
-#include <cassert>
-#include <iterator>
 #include <type_traits>
+#include <cassert>
 
 #include "test_macros.h"
 

diff  --git a/libcxx/test/std/input.output/filesystems/class.filesystem_error/filesystem_error.members.pass.cpp b/libcxx/test/std/input.output/filesystems/class.filesystem_error/filesystem_error.members.pass.cpp
index 8fd23b60081bc..3c0ae5d0886cc 100644
--- a/libcxx/test/std/input.output/filesystems/class.filesystem_error/filesystem_error.members.pass.cpp
+++ b/libcxx/test/std/input.output/filesystems/class.filesystem_error/filesystem_error.members.pass.cpp
@@ -21,10 +21,8 @@
 // const path& path2() const noexcept;
 
 #include "filesystem_include.h"
-#include <cassert>
-#include <string>
-#include <system_error>
 #include <type_traits>
+#include <cassert>
 
 #include "test_macros.h"
 

diff  --git a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.assign/copy.pass.cpp b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.assign/copy.pass.cpp
index 9044b2f5a45e4..a7182557d3f7c 100644
--- a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.assign/copy.pass.cpp
+++ b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.assign/copy.pass.cpp
@@ -15,9 +15,8 @@
 // path& operator=(path const&);
 
 #include "filesystem_include.h"
-#include <cassert>
-#include <string>
 #include <type_traits>
+#include <cassert>
 
 #include "test_macros.h"
 

diff  --git a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.assign/move.pass.cpp b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.assign/move.pass.cpp
index 0f3e4745fd530..69dff085e58f8 100644
--- a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.assign/move.pass.cpp
+++ b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.assign/move.pass.cpp
@@ -17,9 +17,8 @@
 // path& operator=(path&&) noexcept
 
 #include "filesystem_include.h"
-#include <cassert>
-#include <string>
 #include <type_traits>
+#include <cassert>
 
 #include "test_macros.h"
 #include "count_new.h"

diff  --git a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.construct/copy.pass.cpp b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.construct/copy.pass.cpp
index 1155b7c1b3b5f..31d00ffd2cd3e 100644
--- a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.construct/copy.pass.cpp
+++ b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.construct/copy.pass.cpp
@@ -15,9 +15,8 @@
 // path(path const&)
 
 #include "filesystem_include.h"
-#include <cassert>
-#include <string>
 #include <type_traits>
+#include <cassert>
 
 #include "test_macros.h"
 

diff  --git a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.construct/move.pass.cpp b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.construct/move.pass.cpp
index 9f575ba613298..40a8c54f802d6 100644
--- a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.construct/move.pass.cpp
+++ b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.construct/move.pass.cpp
@@ -16,9 +16,8 @@
 // path(path&&) noexcept
 
 #include "filesystem_include.h"
-#include <cassert>
-#include <string>
 #include <type_traits>
+#include <cassert>
 
 #include "test_macros.h"
 #include "count_new.h"

diff  --git a/libcxx/test/std/input.output/filesystems/class.path/synop.pass.cpp b/libcxx/test/std/input.output/filesystems/class.path/synop.pass.cpp
index ab18399fd5d6c..e9e0a990165a3 100644
--- a/libcxx/test/std/input.output/filesystems/class.path/synop.pass.cpp
+++ b/libcxx/test/std/input.output/filesystems/class.path/synop.pass.cpp
@@ -17,9 +17,8 @@
 // static constexpr value_type preferred_separator = ...;
 
 #include "filesystem_include.h"
-#include <cassert>
-#include <string>
 #include <type_traits>
+#include <cassert>
 
 #include "test_macros.h"
 

diff  --git a/libcxx/test/support/filesystem_test_helper.h b/libcxx/test/support/filesystem_test_helper.h
index 44a01645dc49d..00f4701e881af 100644
--- a/libcxx/test/support/filesystem_test_helper.h
+++ b/libcxx/test/support/filesystem_test_helper.h
@@ -14,10 +14,9 @@
 #endif
 
 #include <cassert>
-#include <chrono>
 #include <cstdio> // for printf
 #include <string>
-#include <system_error>
+#include <chrono>
 #include <vector>
 
 #include "make_string.h"


        


More information about the libcxx-commits mailing list