Decouple <cstdint>

This commit is contained in:
Martin Natano
2023-04-20 12:34:12 +02:00
parent bcea05dd67
commit aa87f85eef
167 changed files with 1533 additions and 1307 deletions
+2 -1
View File
@@ -3,6 +3,7 @@
#include "RageUtil.h"
#include <cmath>
#include <cstdint>
#if defined(MACOSX)
#include "archutils/Darwin/VectorHelper.h"
@@ -75,7 +76,7 @@ void RageSoundMixBuffer::write( const float *pBuf, unsigned iSize, int iSourceSt
}
}
void RageSoundMixBuffer::read( int16_t *pBuf )
void RageSoundMixBuffer::read( std::int16_t *pBuf )
{
for( unsigned iPos = 0; iPos < m_iBufUsed; ++iPos )
{