mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
#include <iosfwd> not <ostream>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29061 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
cb7938c328
commit
ff74ac103d
@ -18,7 +18,7 @@
|
|||||||
#include <set>
|
#include <set>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <ostream>
|
#include <iosfwd>
|
||||||
|
|
||||||
namespace llvm {
|
namespace llvm {
|
||||||
namespace sys {
|
namespace sys {
|
||||||
@ -567,10 +567,7 @@ namespace sys {
|
|||||||
void CopyFile(const Path& Dest, const Path& Src);
|
void CopyFile(const Path& Dest, const Path& Src);
|
||||||
}
|
}
|
||||||
|
|
||||||
inline std::ostream& operator<<(std::ostream& strm, const sys::Path& aPath) {
|
std::ostream& operator<<(std::ostream& strm, const sys::Path& aPath);
|
||||||
strm << aPath.toString();
|
|
||||||
return strm;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user