diff --git a/include/llvm/Support/raw_ostream.h b/include/llvm/Support/raw_ostream.h index 8019e44e35b..7e33cc78b18 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(N)); } - - raw_ostream &operator<<(size_t N) { - return this->operator<<(static_cast(N)); - } - + raw_ostream &operator<<(double N) { return this->operator<<(ftostr(N)); }