Index: tests/skia_test.cpp |
diff --git a/tests/skia_test.cpp b/tests/skia_test.cpp |
index 74029d457b5736ad385a336c8525cec284e14e47..1b92290808ffe2f8eb66532c852c5fb55d523d23 100644 |
--- a/tests/skia_test.cpp |
+++ b/tests/skia_test.cpp |
@@ -84,12 +84,12 @@ public: |
struct TestReporter : public skiatest::Reporter { |
public: |
TestReporter() : fError(false), fTestCount(0) {} |
- void bumpTestCount() SK_OVERRIDE { ++fTestCount; } |
- bool allowExtendedTest() const SK_OVERRIDE { |
+ void bumpTestCount() override { ++fTestCount; } |
+ bool allowExtendedTest() const override { |
return FLAGS_extendedTest; |
} |
- bool verbose() const SK_OVERRIDE { return FLAGS_veryVerbose; } |
- void reportFailed(const skiatest::Failure& failure) SK_OVERRIDE { |
+ bool verbose() const override { return FLAGS_veryVerbose; } |
+ void reportFailed(const skiatest::Failure& failure) override { |
SkDebugf("\nFAILED: %s", failure.toString().c_str()); |
fError = true; |
} |