Files
Zygisk-Assistant/module/jni/libcxx/test/support/filesystem_include.h
T
2024-01-16 19:28:29 -03:00

14 lines
274 B
C++

#ifndef TEST_SUPPORT_FILESYSTEM_INCLUDE_H
#define TEST_SUPPORT_FILESYSTEM_INCLUDE_H
#include <filesystem>
#include "test_macros.h"
#if defined(_LIBCPP_VERSION) && TEST_STD_VER < 17
namespace fs = std::__fs::filesystem;
#else
namespace fs = std::filesystem;
#endif
#endif