mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-12 14:41:05 +00:00
Remove size_t operator; this unbreaks the build on Linux. Committing on
the suggestion of resistor. If this breaks some other platform, please go ahead and back this out. llvm-svn: 55106
This commit is contained in:
parent
4c3c0bfddf
commit
fdab2ca258
@ -112,11 +112,7 @@ public:
|
||||
raw_ostream &operator<<(int32_t N) {
|
||||
return this->operator<<(static_cast<int64_t>(N));
|
||||
}
|
||||
|
||||
raw_ostream &operator<<(size_t N) {
|
||||
return this->operator<<(static_cast<uint64_t>(N));
|
||||
}
|
||||
|
||||
|
||||
raw_ostream &operator<<(double N) {
|
||||
return this->operator<<(ftostr(N));
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user