Remove std prefix from uint types

std::uint*  ->  uint*
This commit is contained in:
sukibaby
2024-10-05 19:25:41 -07:00
committed by teejusb
parent 57afab25c1
commit 659cd549a2
112 changed files with 589 additions and 589 deletions
+1 -1
View File
@@ -196,7 +196,7 @@ bool HexToBinary( const RString &s, unsigned char *stringOut )
break;
RString sByte = s.substr( i*2, 2 );
std::uint8_t val = 0;
uint8_t val = 0;
if( sscanf( sByte, "%hhx", &val ) != 1 )
return false;
stringOut[i] = val;