Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
yangql
googletest
Commits
2fa7be93
Commit
2fa7be93
authored
Jul 18, 2019
by
Krystian Kuzniarek
Browse files
explicitly show overriding to align examples to their comments
parent
cc49f5b2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
googletest/docs/advanced.md
googletest/docs/advanced.md
+2
-2
No files found.
googletest/docs/advanced.md
View file @
2fa7be93
...
@@ -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
{}
};
};
```
```
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment