aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/PicturePlaybackBench.cpp
diff options
context:
space:
mode:
authorGravatar djsollen@google.com <djsollen@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-02-27 16:22:48 +0000
committerGravatar djsollen@google.com <djsollen@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-02-27 16:22:48 +0000
commit710c269dc1e503a60265d54109d827c730cd7bc0 (patch)
tree3cbade323d0a96b99b2f5a5d15f8bce56b25581f /bench/PicturePlaybackBench.cpp
parent92d2a299d2738e4369508ea1296981a2f1f8aadb (diff)
fix reorder initialization warning
Diffstat (limited to 'bench/PicturePlaybackBench.cpp')
-rw-r--r--bench/PicturePlaybackBench.cpp4
1 files changed, 2 insertions, 2 deletions
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;