From 30297c53bd233a6d9af7b422ad8a17912f1ef5e6 Mon Sep 17 00:00:00 2001 From: "dongseong.hwang" Date: Thu, 30 Apr 2015 07:47:05 -0700 Subject: Fix build warning: 'this' pointer cannot be null in well-defined C++ code; comparison may be assumed to always evaluate to true [-Wtautological-undefined-compare] Review URL: https://codereview.chromium.org/1109933003 --- src/core/SkPath.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/core/SkPath.cpp b/src/core/SkPath.cpp index 812b49bf3b..54e14522cf 100644 --- a/src/core/SkPath.cpp +++ b/src/core/SkPath.cpp @@ -1996,7 +1996,6 @@ void SkPath::dumpHex() const { #ifdef SK_DEBUG void SkPath::validate() const { - SkASSERT(this != NULL); SkASSERT((fFillType & ~3) == 0); #ifdef SK_DEBUG_PATH -- cgit v1.2.3