filesystem: use non-experimental
std::filesystem has replaced std::experimental::filesystem
since at least C++17 and experimental no longer links without
extra effort in C++20. Use the C++17 std::filesystem APIs.
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: I33cfc22e04e435fcdca5bf83b5877a7a27c394c8
diff --git a/test/serialization_tests.hpp b/test/serialization_tests.hpp
index 7831ce2..902ddf3 100644
--- a/test/serialization_tests.hpp
+++ b/test/serialization_tests.hpp
@@ -4,7 +4,7 @@
#include <stdlib.h>
-#include <experimental/filesystem>
+#include <filesystem>
#include <sdbusplus/bus.hpp>
#include <sdbusplus/test/sdbus_mock.hpp>
@@ -17,7 +17,7 @@
namespace test
{
-namespace fs = std::experimental::filesystem;
+namespace fs = std::filesystem;
char tmplt[] = "/tmp/logging_test.XXXXXX";
sdbusplus::SdBusMock sdbusMock;