explicitly show overriding to align examples to their comments

This commit is contained in:
Krystian Kuzniarek 2019-07-18 17:07:53 +02:00
parent cc49f5b27a
commit 2fa7be9326

View File

@ -1227,10 +1227,10 @@ class Environment : public ::testing::Environment {
virtual ~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.
virtual void TearDown() {}
void TearDown() override {}
};
```