mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-01 00:25:01 +00:00
#include <iosfwd> not <ostream>
llvm-svn: 29061
This commit is contained in:
parent
a75e709ece
commit
14264d4f2e
@ -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);
|
||||
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user