diff options
Diffstat (limited to 'include/core/SkRefCnt.h')
-rw-r--r-- | include/core/SkRefCnt.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/core/SkRefCnt.h b/include/core/SkRefCnt.h index 66fc9dba68..c20ef24069 100644 --- a/include/core/SkRefCnt.h +++ b/include/core/SkRefCnt.h @@ -189,12 +189,13 @@ public: } /** - * BlockRef<B> is a type which inherits from B, cannot be created, - * and makes ref and unref private. + * BlockRef<B> is a type which inherits from B, cannot be created, + * cannot be deleted, and makes ref and unref private. */ template<typename B> class BlockRef : public B { private: BlockRef(); + ~BlockRef(); void ref() const; void unref() const; }; |