This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
JUCE
mirror of
https://github.com/DISTRHO/JUCE
Watch
1
Star
0
Fork
0
Code
Releases
1
Activity
Browse Source
Fixed SortedSet::remove() to return the removed element
tags/2021-05-28
ed
9 years ago
parent
c1e2e6ae40
commit
f374eb6d98
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
modules/juce_core/containers/juce_SortedSet.h
+ 1
- 1
modules/juce_core/containers/juce_SortedSet.h
View File
@@ -376,7 +376,7 @@ public:
*/
ElementType remove (const int indexToRemove) noexcept
{
return data.remove (indexToRemove);
return data.remove
AndReturn
(indexToRemove);
}
/** Removes an item from the set.
Write
Preview
Loading…
Cancel
Save