std::size_t -> size_t

Removing std prefix from all size_t.
This commit is contained in:
sukibaby
2024-10-01 01:46:26 -07:00
committed by teejusb
parent 8d125f3951
commit e0b254968d
161 changed files with 755 additions and 755 deletions
+2 -2
View File
@@ -44,9 +44,9 @@ static void SplitWithQuotes( const RString sSource, const char Delimitor, std::v
if( sSource.empty() )
return;
std::size_t startpos = 0;
size_t startpos = 0;
do {
std::size_t pos = startpos;
size_t pos = startpos;
while( pos < sSource.size() )
{
if( sSource[pos] == Delimitor )