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
+2 -1
View File
@@ -20,6 +20,7 @@
#include "Banner.h"
#include <cmath>
#include <cstddef>
static Preference<bool> g_bPalettedImageCache( "PalettedImageCache", false );
@@ -272,7 +273,7 @@ RageTextureID ImageCache::LoadCachedImage( RString sImageDir, RString sImagePath
{
RageTextureID ID( GetImageCachePath(sImageDir,sImagePath) );
size_t Found = sImagePath.find("_blank");
std::size_t Found = sImagePath.find("_blank");
if( sImagePath == "" || Found!=RString::npos )
return ID;