aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core
diff options
context:
space:
mode:
authorGravatar dongseong.hwang <dongseong.hwang@intel.com>2015-04-28 12:26:52 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-04-28 12:26:52 -0700
commit00ed9a909c06a139af54c1eded2e67c8354c6098 (patch)
treef7fea110599dde71008a5da082d397dfaf8c6441 /src/core
parent38620209ca67535686c6b62a2185254ef119196a (diff)
Fix SkTDynamicHash.h:183:29: warning: equality comparison with extraneous parentheses [-Wparentheses-equality]
Diffstat (limited to 'src/core')
-rw-r--r--src/core/SkTDynamicHash.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/SkTDynamicHash.h b/src/core/SkTDynamicHash.h
index 23544c8b86..8def89b9ca 100644
--- a/src/core/SkTDynamicHash.h
+++ b/src/core/SkTDynamicHash.h
@@ -161,7 +161,7 @@ private:
static T* Deleted() { return reinterpret_cast<T*>(1); } // Also an invalid pointer.
bool validate() const {
- #define SKTDYNAMICHASH_CHECK(x) SkASSERT((x)); if (!(x)) return false
+ #define SKTDYNAMICHASH_CHECK(x) SkASSERT(x); if (!(x)) return false
static const int kLarge = 50; // Arbitrary, tweak to suit your patience.
// O(1) checks, always done.