From e0d3c37051865bf2ec32de3be0a408a8f2a106ac Mon Sep 17 00:00:00 2001 From: Abseil Team Date: Mon, 29 Oct 2018 15:18:53 -0400 Subject: Googletest export Fix broken Fuchsia cc_test. PiperOrigin-RevId: 219170936 --- googletest/src/gtest-death-test.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/googletest/src/gtest-death-test.cc b/googletest/src/gtest-death-test.cc index 27f272d..c4f6270 100644 --- a/googletest/src/gtest-death-test.cc +++ b/googletest/src/gtest-death-test.cc @@ -821,8 +821,9 @@ class FuchsiaDeathTest : public DeathTestImpl { : DeathTestImpl(a_statement, a_regex), file_(file), line_(line) {} // All of these virtual functions are inherited from DeathTest. - virtual int Wait(); - virtual TestRole AssumeRole(); + int Wait() override; + TestRole AssumeRole() override; + std::string GetErrorLogs() override; private: // The name of the file in which the death test is located. -- cgit v0.12