From 710c269dc1e503a60265d54109d827c730cd7bc0 Mon Sep 17 00:00:00 2001 From: "djsollen@google.com" Date: Mon, 27 Feb 2012 16:22:48 +0000 Subject: fix reorder initialization warning http://codereview.appspot.com/5699084/ git-svn-id: http://skia.googlecode.com/svn/trunk@3264 2bbb7eff-a529-9590-31e7-b0007b416f81 --- bench/PicturePlaybackBench.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bench/PicturePlaybackBench.cpp') diff --git a/bench/PicturePlaybackBench.cpp b/bench/PicturePlaybackBench.cpp index 426ecdeb37..6a07fb563d 100644 --- a/bench/PicturePlaybackBench.cpp +++ b/bench/PicturePlaybackBench.cpp @@ -94,8 +94,8 @@ private: class PosTextPlaybackBench : public PicturePlaybackBench { public: PosTextPlaybackBench(void* param, bool drawPosH) - : fDrawPosH(drawPosH) - , INHERITED(param, drawPosH ? "drawPosTextH" : "drawPosText") { } + : INHERITED(param, drawPosH ? "drawPosTextH" : "drawPosText") + , fDrawPosH(drawPosH) { } protected: virtual void recordCanvas(SkCanvas* canvas) { SkPaint paint; -- cgit v1.2.3