aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/Test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Test.cpp')
-rw-r--r--tests/Test.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/Test.cpp b/tests/Test.cpp
index acbc332936..cf068690a6 100644
--- a/tests/Test.cpp
+++ b/tests/Test.cpp
@@ -66,20 +66,20 @@ public:
const skiatest::Failure& failure(int i) const { return fFailures[i]; }
protected:
- virtual void onReportFailed(const Failure& failure) SK_OVERRIDE {
+ void onReportFailed(const Failure& failure) SK_OVERRIDE {
fFailures.push_back(failure);
}
// Proxy down to fReporter. We assume these calls are threadsafe.
- virtual bool allowExtendedTest() const SK_OVERRIDE {
+ bool allowExtendedTest() const SK_OVERRIDE {
return fReporter->allowExtendedTest();
}
- virtual void bumpTestCount() SK_OVERRIDE {
+ void bumpTestCount() SK_OVERRIDE {
fReporter->bumpTestCount();
}
- virtual bool verbose() const SK_OVERRIDE {
+ bool verbose() const SK_OVERRIDE {
return fReporter->verbose();
}