diff options
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(); } }; |