diff options
-rw-r--r-- | include/llvm/Support/raw_ostream.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/include/llvm/Support/raw_ostream.h b/include/llvm/Support/raw_ostream.h index 8019e44e35..7e33cc78b1 100644 --- a/include/llvm/Support/raw_ostream.h +++ b/include/llvm/Support/raw_ostream.h @@ -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)); } |