diff options
Diffstat (limited to 'src/support/path.cpp')
-rw-r--r-- | src/support/path.cpp | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/support/path.cpp b/src/support/path.cpp index 1cf5c736d..d3f5075c2 100644 --- a/src/support/path.cpp +++ b/src/support/path.cpp @@ -20,9 +20,7 @@ #include "support/path.h" -namespace wasm { - -namespace Path { +namespace wasm::Path { char getPathSeparator() { // TODO: use c++17's path separator @@ -93,6 +91,4 @@ std::string getBinaryenBinaryTool(const std::string& name) { return getBinaryenBinDir() + name; } -} // namespace Path - -} // namespace wasm +} // namespace wasm::Path |