From 96fcdcc219d2a0d3579719b84b28bede76efba64 Mon Sep 17 00:00:00 2001 From: halcanary Date: Thu, 27 Aug 2015 07:41:13 -0700 Subject: Style Change: NULL->nullptr DOCS_PREVIEW= https://skia.org/?cl=1316233002 Review URL: https://codereview.chromium.org/1316233002 --- tests/PathOpsDebug.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'tests/PathOpsDebug.cpp') diff --git a/tests/PathOpsDebug.cpp b/tests/PathOpsDebug.cpp index 507d865926..263c37b120 100755 --- a/tests/PathOpsDebug.cpp +++ b/tests/PathOpsDebug.cpp @@ -1066,7 +1066,7 @@ void SkOpSegment::dumpAngles() const { const SkOpSpanBase* span = &fHead; do { const SkOpAngle* fAngle = span->fromAngle(); - const SkOpAngle* tAngle = span->final() ? NULL : span->upCast()->toAngle(); + const SkOpAngle* tAngle = span->final() ? nullptr : span->upCast()->toAngle(); if (fAngle) { SkDebugf(" span=%d from=%d ", span->debugID(), fAngle->debugID()); fAngle->dumpTo(this, tAngle); @@ -1285,7 +1285,7 @@ const SkOpAngle* SkOpGlobalState::debugAngle(int id) const { segment = segment->next(); } } while ((contour = contour->next())); - return NULL; + return nullptr; } SkOpContour* SkOpGlobalState::debugContour(int id) { @@ -1295,7 +1295,7 @@ SkOpContour* SkOpGlobalState::debugContour(int id) { return contour; } } while ((contour = contour->next())); - return NULL; + return nullptr; } const SkOpPtT* SkOpGlobalState::debugPtT(int id) const { @@ -1318,7 +1318,7 @@ const SkOpPtT* SkOpGlobalState::debugPtT(int id) const { segment = segment->next(); } } while ((contour = contour->next())); - return NULL; + return nullptr; } const SkOpSegment* SkOpGlobalState::debugSegment(int id) const { @@ -1332,7 +1332,7 @@ const SkOpSegment* SkOpGlobalState::debugSegment(int id) const { segment = segment->next(); } } while ((contour = contour->next())); - return NULL; + return nullptr; } const SkOpSpanBase* SkOpGlobalState::debugSpan(int id) const { @@ -1353,7 +1353,7 @@ const SkOpSpanBase* SkOpGlobalState::debugSpan(int id) const { segment = segment->next(); } } while ((contour = contour->next())); - return NULL; + return nullptr; } #endif -- cgit v1.2.3