std::size_t -> size_t

Removing std prefix from all size_t.
This commit is contained in:
sukibaby
2024-10-01 01:46:26 -07:00
committed by teejusb
parent 8d125f3951
commit e0b254968d
161 changed files with 755 additions and 755 deletions
+1 -1
View File
@@ -915,7 +915,7 @@ int LuaFunc_get_sound_driver_list(lua_State* L)
{
std::vector<RString> driver_names = RageSoundDriver::GetSoundDriverList();
lua_createtable(L, driver_names.size(), 0);
for(std::size_t n= 0; n < driver_names.size(); ++n)
for(size_t n= 0; n < driver_names.size(); ++n)
{
lua_pushstring(L, driver_names[n].c_str());
lua_rawseti(L, -2, n+1);