constness fix in OwnedArray

This commit is contained in:
Vinnie Falco
2013-07-02 14:37:35 -07:00
parent 485d048415
commit 9c9ba18619

View File

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