need to declare INHERITED for the instcount macros
authorreed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Tue, 28 Aug 2012 12:48:35 +0000 (12:48 +0000)
committerreed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Tue, 28 Aug 2012 12:48:35 +0000 (12:48 +0000)
git-svn-id: http://skia.googlecode.com/svn/trunk@5309 2bbb7eff-a529-9590-31e7-b0007b416f81

include/core/SkImage.h
include/core/SkSurface.h

index 985a3bb..2991b9a 100644 (file)
@@ -96,6 +96,8 @@ private:
     const uint32_t  fUniqueID;
 
     static uint32_t NextUniqueID();
+    
+    typedef SkRefCnt INHERITED;
 };
 
 #endif
index 2034c89..2a9784b 100644 (file)
@@ -137,6 +137,8 @@ private:
     const int   fWidth;
     const int   fHeight;
     uint32_t    fGenerationID;
+    
+    typedef SkRefCnt INHERITED;
 };
 
 #endif