mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-24 01:54:22 +00:00
Whitespace
This commit is contained in:
parent
172c580200
commit
a1b6f2aa34
1 changed files with 5 additions and 5 deletions
|
|
@ -1040,10 +1040,10 @@ public:
|
|||
@see remove, removeFirstMatchingValue, removeAllInstancesOf, removeRange
|
||||
*/
|
||||
void removeLast (int howManyToRemove = 1)
|
||||
{
|
||||
jassert (howManyToRemove >= 0);
|
||||
|
||||
if (howManyToRemove > 0)
|
||||
{
|
||||
jassert (howManyToRemove >= 0);
|
||||
|
||||
if (howManyToRemove > 0)
|
||||
{
|
||||
const ScopedLockType lock (getLock());
|
||||
|
||||
|
|
@ -1054,7 +1054,7 @@ public:
|
|||
data.elements[numUsed - i].~ElementType();
|
||||
|
||||
numUsed -= howManyToRemove;
|
||||
minimiseStorageAfterRemoval();
|
||||
minimiseStorageAfterRemoval();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue