diff options
Diffstat (limited to 'base/scoped_comptr_win.h')
-rw-r--r-- | base/scoped_comptr_win.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/base/scoped_comptr_win.h b/base/scoped_comptr_win.h index d627223..9ba0b84 100644 --- a/base/scoped_comptr_win.h +++ b/base/scoped_comptr_win.h @@ -138,6 +138,9 @@ class ScopedComPtr : public scoped_refptr<Interface> { return reinterpret_cast<BlockIUnknownMethods<Interface>*>(ptr_); } + // Pull in operator=() from the parent class. + using scoped_refptr<Interface>::operator=; + // static methods static const IID& iid() { |