Chromium Code Reviews| Index: include/core/SkMatrix.h |
| diff --git a/include/core/SkMatrix.h b/include/core/SkMatrix.h |
| index d2fb737eb65fc5e0082a64c154d7fe91fa74200c..9f44bed9c4da20251ccb2053d3b9e2ce7dcec2ee 100644 |
| --- a/include/core/SkMatrix.h |
| +++ b/include/core/SkMatrix.h |
| @@ -349,7 +349,7 @@ public: |
| bool SK_WARN_UNUSED_RESULT invert(SkMatrix* inverse) const { |
| // Allow the trivial case to be inlined. |
| if (this->isIdentity()) { |
| - if (NULL != inverse) { |
| + if (inverse) { |
| inverse->reset(); |
| } |
| return true; |