mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-02 16:56:50 +00:00
Implement operator<<(raw_ostream &OS, const Type &T).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@69596 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
206d1856ad
commit
5b7ff35503
@ -1428,4 +1428,9 @@ std::ostream &operator<<(std::ostream &OS, const Type &T) {
|
||||
T.print(OS);
|
||||
return OS;
|
||||
}
|
||||
|
||||
raw_ostream &operator<<(raw_ostream &OS, const Type &T) {
|
||||
T.print(OS);
|
||||
return OS;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user