Drop experimental::filesystem
From c++17 onwards, we have std::filesystem use this instead.
Signed-off-by: Manojkiran Eda <manojkiran.eda@gmail.com>
Change-Id: I18dfce63020fd8683abc5c9afd4af898e20ebe62
diff --git a/inc/post_code.hpp b/inc/post_code.hpp
index 08b1cc5..7ae515f 100644
--- a/inc/post_code.hpp
+++ b/inc/post_code.hpp
@@ -24,7 +24,7 @@
#include <cereal/types/tuple.hpp>
#include <cereal/types/vector.hpp>
#include <chrono>
-#include <experimental/filesystem>
+#include <filesystem>
#include <fstream>
#include <iostream>
#include <phosphor-logging/elog-errors.hpp>
@@ -78,7 +78,7 @@
using primarycode_t = uint64_t;
using secondarycode_t = std::vector<uint8_t>;
using postcode_t = std::tuple<primarycode_t, secondarycode_t>;
-namespace fs = std::experimental::filesystem;
+namespace fs = std::filesystem;
namespace StateServer = sdbusplus::xyz::openbmc_project::State::server;
using post_code =