1
0
Fork 0
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:
reuk 2019-05-30 21:53:59 +01:00 committed by Tom Poole
parent 19e717a7cc
commit c1a7557ac6

View file

@ -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