libcxx

libcxx mirror with random patches
git clone https://git.neptards.moe/neptards/libcxx.git
Log | Files | Refs

filesystem_include.hpp (278B)


      1 #ifndef TEST_SUPPORT_FILESYSTEM_INCLUDE_HPP
      2 #define TEST_SUPPORT_FILESYSTEM_INCLUDE_HPP
      3 
      4 #include <filesystem>
      5 #include "test_macros.h"
      6 
      7 #if defined(_LIBCPP_VERSION) && TEST_STD_VER < 17
      8 namespace fs = std::__fs::filesystem;
      9 #else
     10 namespace fs = std::filesystem;
     11 #endif
     12 
     13 #endif