summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJames Feist <james.feist@linux.intel.com>2019-01-10 08:53:18 -0800
committerJames Feist <james.feist@linux.intel.com>2019-01-10 08:53:18 -0800
commit673eda6dd745a08651764861dd2de9bd597a594c (patch)
treeaa9fc2abb99c5032bbad07eb134d1190665b50da /include
parent81bfd119ea7a04e31fc53c8d12d85acb964d8515 (diff)
downloadbmcweb-673eda6dd745a08651764861dd2de9bd597a594c.tar.gz
bmcweb-673eda6dd745a08651764861dd2de9bd597a594c.zip
filesystem.hpp fix bad sed
sed replacing filesystem should not have happened in this file. Change-Id: I3411d655b563edd52cd980bd56277f16fa6f7ac5 Signed-off-by: James Feist <james.feist@linux.intel.com>
Diffstat (limited to 'include')
-rw-r--r--include/filesystem.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/filesystem.hpp b/include/filesystem.hpp
index ead619e..9915ee1 100644
--- a/include/filesystem.hpp
+++ b/include/filesystem.hpp
@@ -1,7 +1,7 @@
// this file splices filesystem in depending on the implementation
#if __has_include(<filesystem>)
-#include <filesystem.hpp>
+#include <filesystem>
#elif __has_include(<experimental/filesystem>)
#include <experimental/filesystem>
namespace std
@@ -11,4 +11,4 @@ namespace filesystem = std::experimental::filesystem;
} // namespace std
#else
#error filesystem not available
-#endif \ No newline at end of file
+#endif
OpenPOWER on IntegriCloud