1
0
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:
Dan Gohman 2009-04-20 15:55:38 +00:00
parent c248188b46
commit 36c697f57e

View File

@ -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;
}
}