diff options
Diffstat (limited to 'include/core/SkRefCnt.h')
-rw-r--r-- | include/core/SkRefCnt.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/include/core/SkRefCnt.h b/include/core/SkRefCnt.h index d919c8114c..adebd9b8a6 100644 --- a/include/core/SkRefCnt.h +++ b/include/core/SkRefCnt.h @@ -199,13 +199,6 @@ template <typename T> static inline void SkSafeUnref(T* obj) { } } -template<typename T> static inline void SkSafeSetNull(T*& obj) { - if (obj) { - obj->unref(); - obj = nullptr; - } -} - /////////////////////////////////////////////////////////////////////////////// // This is a variant of SkRefCnt that's Not Virtual, so weighs 4 bytes instead of 8 or 16. |