std::size_t -> size_t

Removing std prefix from all size_t.
This commit is contained in:
sukibaby
2024-10-01 00:43:07 -07:00
committed by teejusb
parent 8d125f3951
commit e0b254968d
161 changed files with 755 additions and 755 deletions
+2 -2
View File
@@ -782,7 +782,7 @@ protected:
}
int ReadInternal( void *pBuffer, std::size_t iBytes )
int ReadInternal( void *pBuffer, size_t iBytes )
{
RString sError;
int iRet = m_pWorker->Read( m_pFile, pBuffer, iBytes, sError );
@@ -799,7 +799,7 @@ protected:
return iRet;
}
int WriteInternal( const void *pBuffer, std::size_t iBytes )
int WriteInternal( const void *pBuffer, size_t iBytes )
{
RString sError;
int iRet = m_pWorker->Write( m_pFile, pBuffer, iBytes, sError );