Fixed the hash key comparison function.
authorsugoi@google.com <sugoi@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Mon, 25 Feb 2013 20:42:44 +0000 (20:42 +0000)
committersugoi@google.com <sugoi@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Mon, 25 Feb 2013 20:42:44 +0000 (20:42 +0000)
Review URL: https://codereview.appspot.com/7378065

git-svn-id: http://skia.googlecode.com/svn/trunk@7853 2bbb7eff-a529-9590-31e7-b0007b416f81

src/gpu/GrResourceCache.h

index dd8ba31..f05ba98 100644 (file)
@@ -132,7 +132,7 @@ private:
 
     struct Key {
         int compare(const HashedKey& hashedKey) const {
-            return fHashedKey.compare(fHashedKey);
+            return fHashedKey.compare(hashedKey);
         }
 
         HashedKey fHashedKey;