mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-26 02:14:22 +00:00
Fix for ReferenceCountedArray::sort()
This commit is contained in:
parent
35a4b5085f
commit
4b83b174c0
1 changed files with 1 additions and 1 deletions
|
|
@ -718,7 +718,7 @@ public:
|
|||
// avoids getting warning messages about the parameter being unused
|
||||
|
||||
lock.enter();
|
||||
sortArray (comparator, (ObjectClass*) data.elements, 0, size() - 1, retainOrderOfEquivalentItems);
|
||||
sortArray (comparator, (ObjectClass**) data.elements, 0, size() - 1, retainOrderOfEquivalentItems);
|
||||
lock.exit();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue