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

Unified Diff: include/core/SkPathRef.h

Issue 2173853003: Always init SkPathRef variables. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Add back comment. Created 4 years, 5 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/core/SkPathRef.h
diff --git a/include/core/SkPathRef.h b/include/core/SkPathRef.h
index 0002b594b48aa724882e2488509e8fbc927bbadc..344e705fc3910fd872cbe32b6026f6360e138cea 100644
--- a/include/core/SkPathRef.h
+++ b/include/core/SkPathRef.h
@@ -335,8 +335,8 @@ private:
fIsOval = false;
fIsRRect = false;
// The next two values don't matter unless fIsOval or fIsRRect are true.
- SkDEBUGCODE(fRRectOrOvalIsCCW = false);
- SkDEBUGCODE(fRRectOrOvalStartIdx = 0xAC);
+ fRRectOrOvalIsCCW = false;
+ fRRectOrOvalStartIdx = 0xAC;
SkDEBUGCODE(fEditorsAttached = 0;)
SkDEBUGCODE(this->validate();)
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698