aboutsummaryrefslogtreecommitdiffhomepage
path: root/debugger
diff options
context:
space:
mode:
authorGravatar scroggo@google.com <scroggo@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-02-08 21:16:19 +0000
committerGravatar scroggo@google.com <scroggo@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-02-08 21:16:19 +0000
commit06d6ac645d9269ea05f7461533c646fd3ea71628 (patch)
treef4acbe2e92ba5bc7f33d900da288eaa3917c6b0e /debugger
parentf507c410e3a2a7ef7dab84152d836da5e5a8a5e9 (diff)
Clean up some out of order initialization warnings.
Review URL: https://codereview.appspot.com/7321043 git-svn-id: http://skia.googlecode.com/svn/trunk@7681 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'debugger')
-rw-r--r--debugger/SkDebugCanvas.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/debugger/SkDebugCanvas.cpp b/debugger/SkDebugCanvas.cpp
index aa4d834939..4e71bc340f 100644
--- a/debugger/SkDebugCanvas.cpp
+++ b/debugger/SkDebugCanvas.cpp
@@ -33,9 +33,9 @@ static SkBitmap make_noconfig_bm(int width, int height) {
SkDebugCanvas::SkDebugCanvas(int width, int height)
: INHERITED(make_noconfig_bm(width, height))
- , fOutstandingSaveCount(0)
, fOverdrawViz(false)
- , fOverdrawFilter(NULL) {
+ , fOverdrawFilter(NULL)
+ , fOutstandingSaveCount(0) {
// TODO(chudy): Free up memory from all draw commands in destructor.
fWidth = width;
fHeight = height;