diff --git a/llvm/include/llvm/ADT/StringExtras.h b/llvm/include/llvm/ADT/StringExtras.h index e6d1feac1ab4..d952ae236fa4 100644 --- a/llvm/include/llvm/ADT/StringExtras.h +++ b/llvm/include/llvm/ADT/StringExtras.h @@ -29,7 +29,7 @@ static inline std::string utohexstr(uint64_t X) { if (X == 0) *--BufPtr = '0'; // Handle special case... while (X) { - unsigned char Mod = (unsigned char)X & 15; + unsigned char Mod = static_cast(X) & 15; if (Mod < 10) *--BufPtr = '0' + Mod; else @@ -109,7 +109,7 @@ static inline std::string LowercaseString(const std::string &S) { std::string result(S); for (unsigned i = 0; i < S.length(); ++i) if (isupper(result[i])) - result[i] = (char)tolower(result[i]); + result[i] = char(tolower(result[i])); return result; }