mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
WeakReference: Remove ambiguous operator==
This commit is contained in:
parent
978a00bed2
commit
2336430fea
1 changed files with 0 additions and 3 deletions
|
|
@ -116,9 +116,6 @@ public:
|
|||
*/
|
||||
bool wasObjectDeleted() const noexcept { return holder != nullptr && holder->get() == nullptr; }
|
||||
|
||||
bool operator== (ObjectType* object) const noexcept { return get() == object; }
|
||||
bool operator!= (ObjectType* object) const noexcept { return get() != object; }
|
||||
|
||||
//==============================================================================
|
||||
/** This class is used internally by the WeakReference class - don't use it directly
|
||||
in your code!
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue