mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-09 23:34:20 +00:00
LruCache: Add workaround for GCC 15.2 bug
This commit is contained in:
parent
8daab60325
commit
7aa7f49a8c
1 changed files with 1 additions and 1 deletions
|
|
@ -74,7 +74,7 @@ public:
|
||||||
|
|
||||||
++insertionCounter;
|
++insertionCounter;
|
||||||
|
|
||||||
while (list.size() >= maxEntries)
|
while (map.size() >= maxEntries)
|
||||||
{
|
{
|
||||||
const auto toRemove = list.begin();
|
const auto toRemove = list.begin();
|
||||||
map.erase (*toRemove);
|
map.erase (*toRemove);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue