diff options
| author | 2018-08-24 17:19:07 +0100 | |
|---|---|---|
| committer | 2018-08-28 11:09:40 +0100 | |
| commit | f73cacaae3d8f89327d8886b37792a849cabd9ac (patch) | |
| tree | 79047e31d512d065db47af7e68fa155c1f638f11 /runtime/common_runtime_test.h | |
| parent | bbc6e7edb5fca4a61ac53dd9bce79cb4f0bb3403 (diff) | |
Remove superfluous 'virtual' specifiers in ART.
Remove 'virtual' specifier on methods already bearing the 'override'
specifier.
Test: mmma art
Change-Id: I114930969a5ca048d88de9ecd18e2c6403593e31
Diffstat (limited to 'runtime/common_runtime_test.h')
| -rw-r--r-- | runtime/common_runtime_test.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/common_runtime_test.h b/runtime/common_runtime_test.h index bf17e644af..a5157df36b 100644 --- a/runtime/common_runtime_test.h +++ b/runtime/common_runtime_test.h @@ -157,11 +157,11 @@ class CommonRuntimeTestBase : public TestType, public CommonRuntimeTestImpl { virtual ~CommonRuntimeTestBase() {} protected: - virtual void SetUp() override { + void SetUp() override { CommonRuntimeTestImpl::SetUp(); } - virtual void TearDown() override { + void TearDown() override { CommonRuntimeTestImpl::TearDown(); } }; |