aboutsummaryrefslogtreecommitdiff
path: root/test/idct_test.cc
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2024-02-03 00:39:06 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2024-02-03 00:39:06 +0000
commit1971777eaf660d3928205f8c1d868edd437a5204 (patch)
tree8f5c3f2c206d23653bb8ee4ade59d9b6d3447a21 /test/idct_test.cc
parent29d510a547313f4bd6006e1c5f0c3634c775546a (diff)
parentc163e23d04e3d703a6bc19bffc3e1dbeb80442aa (diff)
downloadlibvpx-simpleperf-release.tar.gz
Merge "Snap for 11400057 from 25cb5c3e5c258d8c42c6ae76a6fa926d50cf5434 to simpleperf-release" into simpleperf-releasesimpleperf-release
Diffstat (limited to 'test/idct_test.cc')
-rw-r--r--test/idct_test.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/idct_test.cc b/test/idct_test.cc
index 1b9532e1c..279e58e2a 100644
--- a/test/idct_test.cc
+++ b/test/idct_test.cc
@@ -27,7 +27,7 @@ using libvpx_test::Buffer;
class IDCTTest : public ::testing::TestWithParam<IdctFunc> {
protected:
- virtual void SetUp() {
+ void SetUp() override {
UUT = GetParam();
input = new Buffer<int16_t>(4, 4, 0);
@@ -41,7 +41,7 @@ class IDCTTest : public ::testing::TestWithParam<IdctFunc> {
ASSERT_TRUE(output->Init());
}
- virtual void TearDown() {
+ void TearDown() override {
delete input;
delete predict;
delete output;