diff --git a/headers/os/support/Referenceable.h b/headers/os/support/Referenceable.h index 7d051ef3f3..5a4fff7a6e 100644 --- a/headers/os/support/Referenceable.h +++ b/headers/os/support/Referenceable.h @@ -225,17 +225,20 @@ public: BReference& operator=(const BReference& other) { fReference = other.fReference; + return *this; } BReference& operator=(Type* other) { fReference = other; + return *this; } template BReference& operator=(const BReference& other) { fReference = other.Get(); + return *this; } bool operator==(const BReference& other) const