Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
googletest
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
googletest
Commits
076c4619
Commit
076c4619
authored
Sep 19, 2019
by
Abseil Team
Committed by
Gennadiy Civil
Sep 27, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Googletest export
Remove unnecessary full qualifications from std types. PiperOrigin-RevId: 270101485
parent
c78ea26f
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
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