Use ToLower(...) instead of std::tolower

This commit is contained in:
practicalswift
2018-10-29 09:15:11 +01:00
parent e70cc8983c
commit c5fd143edb
3 changed files with 2 additions and 4 deletions

View File

@@ -33,7 +33,7 @@ void base_blob<BITS>::SetHex(const char* psz)
psz++;
// skip 0x
if (psz[0] == '0' && tolower(psz[1]) == 'x')
if (psz[0] == '0' && ToLower((unsigned char)psz[1]) == 'x')
psz += 2;
// hex string to uint