Remove std_fs namespace from unit test

This commit is contained in:
Florian Albrechtskirchinger 2022-07-18 23:27:59 +02:00
parent db63cde135
commit 5bbcb6c0a3
No known key found for this signature in database
GPG Key ID: 19618CE9B2D4BE6D

View File

@ -33,20 +33,6 @@ using ordered_json = nlohmann::ordered_json;
#include <variant>
#endif
#if JSON_HAS_EXPERIMENTAL_FILESYSTEM
#include <experimental/filesystem>
namespace nlohmann::detail
{
namespace std_fs = std::experimental::filesystem;
} // namespace nlohmann::detail
#elif JSON_HAS_FILESYSTEM
#include <filesystem>
namespace nlohmann::detail
{
namespace std_fs = std::filesystem;
} // namespace nlohmann::detail
#endif
#ifdef JSON_HAS_CPP_20
#include <span>
#endif