1
0
Fork 0
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:
jules 2013-07-02 21:52:48 +01:00
parent 94a81e0d91
commit 282cf3dac4

View file

@ -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());