mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-05 07:39:17 +00:00
Merge pull request #4659 from leoetlino/chunkfile-set
Fix ChunkFile for std::set
This commit is contained in:
commit
dd9e6760c4
1 changed files with 1 additions and 1 deletions
|
@ -120,7 +120,7 @@ public:
|
||||||
case MODE_WRITE:
|
case MODE_WRITE:
|
||||||
case MODE_MEASURE:
|
case MODE_MEASURE:
|
||||||
case MODE_VERIFY:
|
case MODE_VERIFY:
|
||||||
for (V& val : x)
|
for (const V& val : x)
|
||||||
{
|
{
|
||||||
Do(val);
|
Do(val);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue