filesystem_include.h 274 B

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