mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
constness fix in OwnedArray.
This commit is contained in:
parent
94a81e0d91
commit
282cf3dac4
1 changed files with 1 additions and 1 deletions
|
|
@ -350,7 +350,7 @@ public:
|
|||
|
||||
@param newObject the new object to add to the array
|
||||
*/
|
||||
void addIfNotAlreadyThere (const ObjectClass* const newObject) noexcept
|
||||
void addIfNotAlreadyThere (ObjectClass* const newObject) noexcept
|
||||
{
|
||||
const ScopedLockType lock (getLock());
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue