Decouple <cstddef>

This commit is contained in:
Martin Natano
2023-04-19 23:04:25 +02:00
parent 093675cdc3
commit 78fb2e9fc3
171 changed files with 2012 additions and 1786 deletions
+3 -1
View File
@@ -10,6 +10,8 @@ http://en.wikipedia.org/wiki/INI_file
#include "RageLog.h"
#include "RageFile.h"
#include <cstddef>
IniFile::IniFile(): XNode("IniFile")
{
@@ -94,7 +96,7 @@ bool IniFile::ReadFile( RageFileBasic &f )
if(keychild == nullptr)
{ break; }
// New value.
size_t iEqualIndex = line.find("=");
std::size_t iEqualIndex = line.find("=");
if( iEqualIndex != std::string::npos )
{
RString valuename = line.Left((int) iEqualIndex);