summaryrefslogtreecommitdiffstats
path: root/storagehandler.cpp
diff options
context:
space:
mode:
authorBrad Bishop <bradleyb@fuzziesquirrel.com>2018-11-21 15:48:18 -0500
committerVernon Mauery <vernon.mauery@linux.intel.com>2018-11-27 00:12:15 +0000
commit1a4117b8a6163dc2596cf9302c38edfef2042738 (patch)
treec575dc706b2f11dd937281e4aec38ceb7e003a0d /storagehandler.cpp
parent1990c85e8b702996c8d899cd3914ed23e78f49cc (diff)
downloadphosphor-host-ipmid-1a4117b8a6163dc2596cf9302c38edfef2042738.tar.gz
phosphor-host-ipmid-1a4117b8a6163dc2596cf9302c38edfef2042738.zip
storage: gcc8: standardize use of std::filesystem
This was already done repo-wide with 185b9f8b but this one spot appears to have been missed, and was caught by gcc8: | ../git/storagehandler.cpp:276:39: error: 'filesystem' is not a namespace-name | namespace fs = std::experimental::filesystem; | ^~~~~~~~~~ Change-Id: I79d70f0ba1268eae9fc76be690313a5128b59f17 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
Diffstat (limited to 'storagehandler.cpp')
-rw-r--r--storagehandler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/storagehandler.cpp b/storagehandler.cpp
index 5ac116c..ebd0a20 100644
--- a/storagehandler.cpp
+++ b/storagehandler.cpp
@@ -273,7 +273,7 @@ ipmi_ret_t deleteSELEntry(ipmi_netfn_t netfn, ipmi_cmd_t cmd,
ipmi_request_t request, ipmi_response_t response,
ipmi_data_len_t data_len, ipmi_context_t context)
{
- namespace fs = std::experimental::filesystem;
+ namespace fs = std::filesystem;
auto requestData =
reinterpret_cast<const ipmi::sel::DeleteSELEntryRequest*>(request);
OpenPOWER on IntegriCloud