diff --git a/include/llvm/System/Path.h b/include/llvm/System/Path.h index bd3a5dffae5..14250b5de8e 100644 --- a/include/llvm/System/Path.h +++ b/include/llvm/System/Path.h @@ -18,7 +18,7 @@ #include #include #include -#include +#include namespace llvm { namespace sys { @@ -567,10 +567,7 @@ namespace sys { void CopyFile(const Path& Dest, const Path& Src); } -inline std::ostream& operator<<(std::ostream& strm, const sys::Path& aPath) { - strm << aPath.toString(); - return strm; -} +std::ostream& operator<<(std::ostream& strm, const sys::Path& aPath); }