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>
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 std
#else
#error filesystem not available
-#endif
\ No newline at end of file
+#endif