Commit 2fa7be93 authored by Krystian Kuzniarek's avatar Krystian Kuzniarek
Browse files

explicitly show overriding to align examples to their comments

parent cc49f5b2
...@@ -1227,10 +1227,10 @@ class Environment : public ::testing::Environment { ...@@ -1227,10 +1227,10 @@ class Environment : public ::testing::Environment {
virtual ~Environment() {} virtual ~Environment() {}
// Override this to define how to set up the environment. // Override this to define how to set up the environment.
virtual void SetUp() {} void SetUp() override {}
// Override this to define how to tear down the environment. // Override this to define how to tear down the environment.
virtual void TearDown() {} void TearDown() override {}
}; };
``` ```
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment