From a35c68d52ad2694ef6f620a166baf93d4ef45b5b Mon Sep 17 00:00:00 2001 From: Cary Clark Date: Tue, 4 Oct 2016 10:59:29 -0400 Subject: [PATCH] fix initialization order Broke the linux build with incorrectly ordered construction initialization. TBR=reed@google.com BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2926 Change-Id: I2555616b945021cf119122811db0cfaf999834a0 Reviewed-on: https://skia-review.googlesource.com/2926 Reviewed-by: Cary Clark --- tests/skia_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/skia_test.cpp b/tests/skia_test.cpp index 6f02b0b262..a1c3c23781 100644 --- a/tests/skia_test.cpp +++ b/tests/skia_test.cpp @@ -86,7 +86,7 @@ public: void operator()() { struct TestReporter : public skiatest::Reporter { public: - TestReporter() : fError(false), fTestCount(0), fStats(nullptr) {} + TestReporter() : fStats(nullptr), fError(false), fTestCount(0) {} void bumpTestCount() override { ++fTestCount; } bool allowExtendedTest() const override { return FLAGS_extendedTest; -- 2.34.1