mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
Implement operator<<(raw_ostream &OS, const Type &T).
llvm-svn: 69596
This commit is contained in:
parent
c248188b46
commit
36c697f57e
@ -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