diff options
Diffstat (limited to 'lib/Support/PathV2.cpp')
-rw-r--r-- | lib/Support/PathV2.cpp | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/lib/Support/PathV2.cpp b/lib/Support/PathV2.cpp index a4a3f38341..dbfde54a73 100644 --- a/lib/Support/PathV2.cpp +++ b/lib/Support/PathV2.cpp @@ -12,6 +12,7 @@ //===----------------------------------------------------------------------===// #include "llvm/Support/PathV2.h" +#include "llvm/Support/FileSystem.h" #include "llvm/Support/ErrorHandling.h" #include <cctype> @@ -666,9 +667,13 @@ error_code is_relative(const Twine &path, bool &result) { return ec; } -} -} -} +} // end namespace path + +namespace fs { + +} // end namespace fs +} // end namespace sys +} // end namespace llvm // Include the truly platform-specific parts. #if defined(LLVM_ON_UNIX) |