1 #ifndef TEST_SUPPORT_FILESYSTEM_INCLUDE_H
2 #define TEST_SUPPORT_FILESYSTEM_INCLUDE_H
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
14