diff options
| author | Patrick Venture <venture@google.com> | 2019-03-08 13:03:03 -0800 |
|---|---|---|
| committer | Patrick Venture <venture@google.com> | 2019-03-08 13:03:03 -0800 |
| commit | 005d46214073bb9ede18b4aa17eac8ff4ea72d7d (patch) | |
| tree | 549324b2b29a4d60394f33c2dbf0be5247d713a1 /sysfs | |
| parent | f42741197ec807e0436a5e519ccff18519c67248 (diff) | |
| download | phosphor-pid-control-005d46214073bb9ede18b4aa17eac8ff4ea72d7d.tar.gz phosphor-pid-control-005d46214073bb9ede18b4aa17eac8ff4ea72d7d.zip | |
use filesystem instead of experimental
Use filesystem now that it should be available instead of
experimental::filesystem.
Change-Id: I8648ac2b279eea42c13d6b12f312a2e1e02aa152
Signed-off-by: Patrick Venture <venture@google.com>
Diffstat (limited to 'sysfs')
| -rw-r--r-- | sysfs/util.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysfs/util.cpp b/sysfs/util.cpp index aeceada..d73ec0f 100644 --- a/sysfs/util.cpp +++ b/sysfs/util.cpp @@ -16,7 +16,7 @@ #include "sysfs/util.hpp" -#include <experimental/filesystem> +#include <filesystem> #include <iostream> #include <string> @@ -31,7 +31,7 @@ */ static constexpr auto platform = "/sys/devices/platform/"; -namespace fs = std::experimental::filesystem; +namespace fs = std::filesystem; std::string FixupPath(std::string original) { |

