use filesystem instead of experimental
Use filesystem now that it should be available instead of
experimental::filesystem.
Change-Id: Ie618ac80a53cd506a7ac091695dc85e7923e440a
Signed-off-by: Patrick Venture <venture@google.com>
diff --git a/file_handler.cpp b/file_handler.cpp
index bab8bf1..9fd5ea8 100644
--- a/file_handler.cpp
+++ b/file_handler.cpp
@@ -17,14 +17,14 @@
#include "file_handler.hpp"
#include <cstdint>
-#include <experimental/filesystem>
+#include <filesystem>
#include <memory>
#include <string>
#include <vector>
namespace blobs
{
-namespace fs = std::experimental::filesystem;
+namespace fs = std::filesystem;
bool FileHandler::open(const std::string& path)
{