From: Reid Spencer Date: Thu, 1 Jun 2006 07:03:53 +0000 (+0000) Subject: Favor C++ casts over C casts in C++ code. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=79818a40d73a1ca6154f0823d599c3208956d5e7;p=oota-llvm.git Favor C++ casts over C casts in C++ code. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28622 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/ADT/StringExtras.h b/include/llvm/ADT/StringExtras.h index f54d89ca464..066594e0650 100644 --- a/include/llvm/ADT/StringExtras.h +++ b/include/llvm/ADT/StringExtras.h @@ -57,8 +57,8 @@ static inline std::string utostr_32(uint32_t X, bool isNeg = false) { } static inline std::string utostr(uint64_t X, bool isNeg = false) { - if (X == (uint32_t)X) - return utostr_32((uint32_t)X, isNeg); + if (X == uint32_t(X)) + return utostr_32(uint32_t(X), isNeg); char Buffer[40]; char *BufPtr = Buffer+39;