mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Fixed a RefCountedArray const correctness issue
This commit is contained in:
parent
19e717a7cc
commit
c1a7557ac6
1 changed files with 1 additions and 1 deletions
|
|
@ -829,7 +829,7 @@ public:
|
|||
*/
|
||||
template <class ElementComparator>
|
||||
void sort (ElementComparator& comparator,
|
||||
bool retainOrderOfEquivalentItems = false) const noexcept
|
||||
bool retainOrderOfEquivalentItems = false) noexcept
|
||||
{
|
||||
// If you pass in an object with a static compareElements() method, this
|
||||
// avoids getting warning messages about the parameter being unused
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue