diff options
-rw-r--r-- | googletest/docs/advanced.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/googletest/docs/advanced.md b/googletest/docs/advanced.md index a9f2dfa..10af769 100644 --- a/googletest/docs/advanced.md +++ b/googletest/docs/advanced.md @@ -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 {} |