restore old convention of asserting refcnt==1 in destructor
authorreed <reed@google.com>
Mon, 24 Nov 2014 22:13:55 +0000 (14:13 -0800)
committerCommit bot <commit-bot@chromium.org>
Mon, 24 Nov 2014 22:13:55 +0000 (14:13 -0800)
BUG=skia:

Review URL: https://codereview.chromium.org/757563003

include/core/SkRefCnt.h

index 9360878..c718987 100644 (file)
@@ -255,6 +255,7 @@ template <typename Derived>
 class SkNVRefCnt : SkNoncopyable {
 public:
     SkNVRefCnt() : fRefCnt(1) {}
+    ~SkNVRefCnt() { SkASSERTF(1 == fRefCnt, "NVRefCnt was %d", fRefCnt); }
 
     // Implementation is pretty much the same as SkRefCntBase. All required barriers are the same:
     //   - unique() needs acquire when it returns true, and no barrier if it returns false;
@@ -267,18 +268,12 @@ public:
         int32_t prevValue = sk_atomic_dec(&fRefCnt);
         SkASSERT(prevValue >= 1);
         if (1 == prevValue) {
+            SkDEBUGCODE(fRefCnt = 1;)   // restore the 1 for our destructor's assert
             SkDELETE((const Derived*)this);
         }
     }
     void  deref() const { this->unref(); }  // Chrome prefers to call deref().
 
-protected:
-#ifdef SK_DEBUG
-    ~SkNVRefCnt() {
-        SkASSERTF(0 == fRefCnt, "NVRefCnt was %d", fRefCnt);
-    }
-#endif
-
 private:
     mutable int32_t fRefCnt;
 };