switch experimental::fs to std::fs
std::filesystem was added to C++17 and is well supported now. Remove
the older std::experimental::filesystem usage.
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: I6d1ef0f3ac02954ddbffc332393fa11930dffad7
diff --git a/vpnor/table.hpp b/vpnor/table.hpp
index e42e8d8..68c82be 100644
--- a/vpnor/table.hpp
+++ b/vpnor/table.hpp
@@ -3,7 +3,7 @@
#pragma once
#include <cstring>
-#include <experimental/filesystem>
+#include <filesystem>
#include <memory>
#include <numeric>
#include <vector>
@@ -22,7 +22,7 @@
namespace virtual_pnor
{
-namespace fs = std::experimental::filesystem;
+namespace fs = std::filesystem;
using PartitionTable = std::vector<uint8_t>;
using checksum_t = uint32_t;