Remove global "using namespace std;" declarations, use "std::" prefixes on all std elements

Fix whitespace changes
This commit is contained in:
Michael Sundqvist
2022-07-31 22:14:38 +02:00
committed by Martin Natano
parent f0680a29fc
commit 0cba3579de
534 changed files with 3456 additions and 3488 deletions
+1 -1
View File
@@ -121,7 +121,7 @@ int RageFileDriverReadAhead::ReadInternal( void *pBuffer, size_t iBytes )
if( m_bReadAheadNeeded && m_iFilePos < (int) m_sBuffer.size() )
{
// If we can serve data out of the buffer, use it.
iRet = min( iBytes, m_sBuffer.size() - m_iFilePos );
iRet = std::min( iBytes, m_sBuffer.size() - m_iFilePos );
memcpy( pBuffer, m_sBuffer.data() + m_iFilePos, iRet );
}
else