mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-09 11:25:55 +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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55106 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -113,10 +113,6 @@ public:
|
||||
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));
|
||||
}
|
||||
|
Reference in New Issue
Block a user