mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-26 14:28:34 +00:00
Merge pull request #11687 from Minty-Meeo/warnings
Resolve GCC/Clang Warnings
This commit is contained in:
commit
ae18aa0639
22 changed files with 75 additions and 108 deletions
|
@ -657,8 +657,8 @@ void TextureCacheBase::DoSaveState(PointerWrap& p)
|
|||
}
|
||||
|
||||
auto doList = [&p](auto list) {
|
||||
u32 size = static_cast<u32>(list.size());
|
||||
p.Do(size);
|
||||
u32 list_size = static_cast<u32>(list.size());
|
||||
p.Do(list_size);
|
||||
for (const auto& it : list)
|
||||
{
|
||||
p.Do(it.first);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue