diff options
Diffstat (limited to 'llvm/lib/Support/raw_ostream.cpp')
-rw-r--r-- | llvm/lib/Support/raw_ostream.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Support/raw_ostream.cpp b/llvm/lib/Support/raw_ostream.cpp index 15813fd3e66..a278a3b4660 100644 --- a/llvm/lib/Support/raw_ostream.cpp +++ b/llvm/lib/Support/raw_ostream.cpp @@ -141,7 +141,7 @@ raw_ostream &raw_ostream::operator<<(unsigned long long N) { return this->operator<<(static_cast<unsigned long>(N)); char NumberBuffer[20]; - char *EndPtr = NumberBuffer+sizeof(NumberBuffer); + char *EndPtr = std::end(NumberBuffer); char *CurPtr = EndPtr; while (N) { @@ -167,7 +167,7 @@ raw_ostream &raw_ostream::write_hex(unsigned long long N) { return *this << '0'; char NumberBuffer[20]; - char *EndPtr = NumberBuffer+sizeof(NumberBuffer); + char *EndPtr = std::end(NumberBuffer); char *CurPtr = EndPtr; while (N) { |