diff options
| -rw-r--r-- | llvm/include/llvm/System/Path.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/llvm/include/llvm/System/Path.h b/llvm/include/llvm/System/Path.h index bd3a5dffae5..14250b5de8e 100644 --- a/llvm/include/llvm/System/Path.h +++ b/llvm/include/llvm/System/Path.h @@ -18,7 +18,7 @@ #include <set> #include <string> #include <vector> -#include <ostream> +#include <iosfwd> 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); } |

