diff options
Diffstat (limited to 'fs.cpp')
-rw-r--r-- | fs.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -16,13 +16,13 @@ #include "fs.hpp" -#include <experimental/filesystem> +#include <filesystem> #include <string> #include <vector> namespace blobs { -namespace fs = std::experimental::filesystem; +namespace fs = std::filesystem; std::vector<std::string> getLibraryList(const std::string& path, PathMatcher check) |