diff options
| author | 2018-08-24 17:19:07 +0100 | |
|---|---|---|
| committer | 2018-08-28 11:09:40 +0100 | |
| commit | f73cacaae3d8f89327d8886b37792a849cabd9ac (patch) | |
| tree | 79047e31d512d065db47af7e68fa155c1f638f11 /runtime/class_linker_test.cc | |
| 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/class_linker_test.cc')
| -rw-r--r-- | runtime/class_linker_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/class_linker_test.cc b/runtime/class_linker_test.cc index 52ddd13ab7..ab7182a75e 100644 --- a/runtime/class_linker_test.cc +++ b/runtime/class_linker_test.cc @@ -450,7 +450,7 @@ class ClassLinkerTest : public CommonRuntimeTest { class ClassLinkerMethodHandlesTest : public ClassLinkerTest { protected: - virtual void SetUpRuntimeOptions(RuntimeOptions* options) override { + void SetUpRuntimeOptions(RuntimeOptions* options) override { CommonRuntimeTest::SetUpRuntimeOptions(options); } }; |