From 5bbcb6c0a3894bf02aa1176cc671b7a1d559c85d Mon Sep 17 00:00:00 2001 From: Florian Albrechtskirchinger Date: Mon, 18 Jul 2022 23:27:59 +0200 Subject: [PATCH] Remove std_fs namespace from unit test --- tests/src/unit-regression2.cpp | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/tests/src/unit-regression2.cpp b/tests/src/unit-regression2.cpp index 63df1a63b..c0fe0520e 100644 --- a/tests/src/unit-regression2.cpp +++ b/tests/src/unit-regression2.cpp @@ -33,20 +33,6 @@ using ordered_json = nlohmann::ordered_json; #include #endif -#if JSON_HAS_EXPERIMENTAL_FILESYSTEM -#include -namespace nlohmann::detail -{ -namespace std_fs = std::experimental::filesystem; -} // namespace nlohmann::detail -#elif JSON_HAS_FILESYSTEM -#include -namespace nlohmann::detail -{ -namespace std_fs = std::filesystem; -} // namespace nlohmann::detail -#endif - #ifdef JSON_HAS_CPP_20 #include #endif