aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorGravatar scroggo@google.com <scroggo@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-10-11 19:10:33 +0000
committerGravatar scroggo@google.com <scroggo@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-10-11 19:10:33 +0000
commitb8e404aebe0f0d6f2508899c3405876a85704aae (patch)
tree119ea318732486605deae4f33e0ec31a38535157 /tools
parent515899eb2f6fbcea05b68ff13ff412c20e9e06f4 (diff)
Fix a warning.
Review URL: https://codereview.appspot.com/6650048 git-svn-id: http://skia.googlecode.com/svn/trunk@5902 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'tools')
-rw-r--r--tools/PictureRenderer.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/PictureRenderer.cpp b/tools/PictureRenderer.cpp
index 247875250d..ae2c94e12d 100644
--- a/tools/PictureRenderer.cpp
+++ b/tools/PictureRenderer.cpp
@@ -329,10 +329,10 @@ struct ThreadData {
ThreadData(SkCanvas* target, int* tileCounter, SkTDArray<SkRect>* tileRects,
const SkString* path, bool* success)
: fCanvas(target)
- , fTileCounter(tileCounter)
- , fTileRects(tileRects)
, fPath(path)
- , fSuccess(success) {
+ , fSuccess(success)
+ , fTileCounter(tileCounter)
+ , fTileRects(tileRects) {
SkASSERT(target != NULL && tileCounter != NULL && tileRects != NULL);
// Success must start off true, and it will be set to false upon failure.
SkASSERT(success != NULL && *success);