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
076c4619
Commit
076c4619
authored
Sep 19, 2019
by
Abseil Team
Committed by
Gennadiy Civil
Sep 27, 2019
Browse files
Googletest export
Remove unnecessary full qualifications from std types. PiperOrigin-RevId: 270101485
parent
c78ea26f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
.travis.yml
.travis.yml
+1
-1
googlemock/docs/cook_book.md
googlemock/docs/cook_book.md
+4
-4
No files found.
.travis.yml
View file @
076c4619
...
...
@@ -66,7 +66,7 @@ addons:
packages
:
-
ccache
-
gcc@4.9
-
llvm@
4
-
llvm@
3.9
update
:
true
notifications
:
...
...
googlemock/docs/cook_book.md
View file @
076c4619
...
...
@@ -3688,10 +3688,10 @@ class NotNullMatcher {
}
// Describes the property of a value matching this matcher.
void DescribeTo(
::
std::ostream* os) const { *os << "is not NULL"; }
void DescribeTo(std::ostream* os) const { *os << "is not NULL"; }
// Describes the property of a value NOT matching this matcher.
void DescribeNegationTo(
::
std::ostream* os) const { *os << "is NULL"; }
void DescribeNegationTo(std::ostream* os) const { *os << "is NULL"; }
};
// To construct a polymorphic matcher, pass an instance of the class
...
...
@@ -3735,7 +3735,7 @@ class CardinalityInterface {
virtual bool IsSaturatedByCallCount(int call_count) const = 0;
// Describes self to an ostream.
virtual void DescribeTo(
::
std::ostream* os) const = 0;
virtual void DescribeTo(std::ostream* os) const = 0;
};
```
...
...
@@ -3757,7 +3757,7 @@ class EvenNumberCardinality : public CardinalityInterface {
return false;
}
void DescribeTo(
::
std::ostream* os) const {
void DescribeTo(std::ostream* os) const {
*os << "called even number of times";
}
};
...
...
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