forked from OSchip/llvm-project
Favor C++ casts over C casts in C++ code.
llvm-svn: 28622
This commit is contained in:
parent
5861659a1e
commit
f69d4c8f3b
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue