diff options
author | Patrick Venture <venture@google.com> | 2019-03-08 13:08:42 -0800 |
---|---|---|
committer | Patrick Venture <venture@google.com> | 2019-03-08 13:09:37 -0800 |
commit | 48eb4029694c228ee8bb09202efb9d6c8b741d96 (patch) | |
tree | 76e9a5325a180e7bdfda5bc37782eadcc33934c3 /test/utils_unittest.cpp | |
parent | fd4cdea449f01b910b654b78f2076cf76540619c (diff) | |
download | phosphor-ipmi-blobs-48eb4029694c228ee8bb09202efb9d6c8b741d96.tar.gz phosphor-ipmi-blobs-48eb4029694c228ee8bb09202efb9d6c8b741d96.zip |
use filesystem instead of experimental
Use filesystem now that it should be available instead of
experimental::filesystem.
Change-Id: Ia9b17f33ced70fe2f1f12f11d8708d15ff422bfa
Signed-off-by: Patrick Venture <venture@google.com>
Diffstat (limited to 'test/utils_unittest.cpp')
-rw-r--r-- | test/utils_unittest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/utils_unittest.cpp b/test/utils_unittest.cpp index b986bd8..6b89f6a 100644 --- a/test/utils_unittest.cpp +++ b/test/utils_unittest.cpp @@ -4,14 +4,14 @@ #include "manager_mock.hpp" #include "utils.hpp" -#include <experimental/filesystem> +#include <filesystem> #include <memory> #include <string> #include <vector> #include <gtest/gtest.h> -namespace fs = std::experimental::filesystem; +namespace fs = std::filesystem; namespace blobs { |