Googletest export

Update example Environment class destructor annotation

PiperOrigin-RevId: 283986183
This commit is contained in:
Abseil Team 2019-12-05 12:07:30 -05:00 committed by Mark Barolak
parent 1d563578c8
commit 2002f267f0

View File

@ -1231,7 +1231,7 @@ environment, which knows how to set-up and tear-down:
```c++
class Environment : public ::testing::Environment {
public:
virtual ~Environment() {}
~Environment() override {}
// Override this to define how to set up the environment.
void SetUp() override {}