aboutsummaryrefslogtreecommitdiffstats
path: root/googletest/docs
diff options
context:
space:
mode:
authorKrystian Kuzniarek <krystian.kuzniarek@gmail.com>2019-07-18 17:06:22 +0200
committerKrystian Kuzniarek <krystian.kuzniarek@gmail.com>2019-07-18 17:06:22 +0200
commitcc49f5b27a60f6f22db2cab435e242c83c2443a9 (patch)
tree091b70026c88c830f9c77694b07dc18e3b6c239d /googletest/docs
parent2ef13f524b837a68bae27ae1123da0400dff6285 (diff)
downloadgoogletest-cc49f5b27a60f6f22db2cab435e242c83c2443a9.tar.gz
googletest-cc49f5b27a60f6f22db2cab435e242c83c2443a9.tar.bz2
googletest-cc49f5b27a60f6f22db2cab435e242c83c2443a9.zip
document a missing parent class
Diffstat (limited to 'googletest/docs')
-rw-r--r--googletest/docs/advanced.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/googletest/docs/advanced.md b/googletest/docs/advanced.md
index d31e4cfb..b4e4c215 100644
--- a/googletest/docs/advanced.md
+++ b/googletest/docs/advanced.md
@@ -1222,7 +1222,7 @@ First, you subclass the `::testing::Environment` class to define a test
environment, which knows how to set-up and tear-down:
```c++
-class Environment {
+class Environment : public ::testing::Environment {
public:
virtual ~Environment() {}