aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar dongseong.hwang <dongseong.hwang@intel.com>2015-04-30 07:47:05 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-04-30 07:47:05 -0700
commit30297c53bd233a6d9af7b422ad8a17912f1ef5e6 (patch)
tree643bcd44dbfebc91c96294f7f48eda18d21f8077
parentf1d6df772ee241c67e29b0d6598576e38551a716 (diff)
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]
-rw-r--r--src/core/SkPath.cpp1
1 files changed, 0 insertions, 1 deletions
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