From 79818a40d73a1ca6154f0823d599c3208956d5e7 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Thu, 1 Jun 2006 07:03:53 +0000 Subject: [PATCH] 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 --- include/llvm/ADT/StringExtras.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;