test/decode_perf_test.cc: use nullptr
authorJames Zern <jzern@google.com>
Tue, 25 Jul 2023 19:10:21 +0000 (12:10 -0700)
committerJames Zern <jzern@google.com>
Tue, 25 Jul 2023 19:10:21 +0000 (12:10 -0700)
created with clang-tidy --fix --checks=-*,modernize-use-nullptr

Change-Id: Ibf4a80fa00e9b59d471c92788ec4c7c72e4662e5

test/decode_perf_test.cc

index ed23cc2..383fd2d 100644 (file)
@@ -116,7 +116,7 @@ class VP9NewEncodeDecodePerfTest
  protected:
   VP9NewEncodeDecodePerfTest()
       : EncoderTest(GET_PARAM(0)), encoding_mode_(GET_PARAM(1)), speed_(0),
-        outfile_(0), out_frames_(0) {}
+        outfile_(nullptr), out_frames_(0) {}
 
   ~VP9NewEncodeDecodePerfTest() override = default;