summaryrefslogtreecommitdiff
path: root/test/support/filesystem_include.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/support/filesystem_include.hpp')
-rw-r--r--test/support/filesystem_include.hpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/support/filesystem_include.hpp b/test/support/filesystem_include.hpp
deleted file mode 100644
index 731532a7be986..0000000000000
--- a/test/support/filesystem_include.hpp
+++ /dev/null
@@ -1,13 +0,0 @@
-#ifndef TEST_SUPPORT_FILESYSTEM_INCLUDE_HPP
-#define TEST_SUPPORT_FILESYSTEM_INCLUDE_HPP
-
-#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