Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(988)

Unified Diff: src/utils/SkParsePath.cpp

Issue 1316233002: Style Change: NULL->nullptr (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 2015-08-27 (Thursday) 10:25:06 EDT Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/utils/SkParseColor.cpp ('k') | src/utils/SkPatchGrid.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/utils/SkParsePath.cpp
diff --git a/src/utils/SkParsePath.cpp b/src/utils/SkParsePath.cpp
index 94c31121209d92dd009218a8e431215d395d2919..3fecb46fe60de2af5b551c3885ae2e827342bb0e 100644
--- a/src/utils/SkParsePath.cpp
+++ b/src/utils/SkParsePath.cpp
@@ -167,7 +167,7 @@ bool SkParsePath::FromSVGString(const char data[], SkPath* result) {
break;
case '~': {
SkPoint args[2];
- data = find_points(data, args, 2, false, NULL);
+ data = find_points(data, args, 2, false, nullptr);
path.moveTo(args[0].fX, args[0].fY);
path.lineTo(args[1].fX, args[1].fY);
} break;
« no previous file with comments | « src/utils/SkParseColor.cpp ('k') | src/utils/SkPatchGrid.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698