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
080fcbe0
Commit
080fcbe0
authored
Mar 16, 2018
by
Gennadiy Civil
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cl 189032107
parent
a178cc7e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
19 deletions
+9
-19
gmock-spec-builders.h
googlemock/include/gmock/gmock-spec-builders.h
+0
-1
gmock-matchers_test.cc
googlemock/test/gmock-matchers_test.cc
+0
-1
gtest-internal.h
googletest/include/gtest/internal/gtest-internal.h
+9
-17
No files found.
googlemock/include/gmock/gmock-spec-builders.h
View file @
080fcbe0
...
...
@@ -563,7 +563,6 @@ class ExpectationSet {
public
:
// A bidirectional iterator that can read a const element in the set.
typedef
Expectation
::
Set
::
const_iterator
const_iterator
;
typedef
Expectation
::
Set
::
iterator
iterator
;
// An object stored in the set. This is an alias of Expectation.
typedef
Expectation
::
Set
::
value_type
value_type
;
...
...
googlemock/test/gmock-matchers_test.cc
View file @
080fcbe0
...
...
@@ -4526,7 +4526,6 @@ class Streamlike {
class
ConstIter
;
public
:
typedef
ConstIter
const_iterator
;
typedef
ConstIter
iterator
;
typedef
T
value_type
;
template
<
typename
InIter
>
...
...
googletest/include/gtest/internal/gtest-internal.h
View file @
080fcbe0
...
...
@@ -940,27 +940,19 @@ struct IsRecursiveContainerImpl;
template
<
typename
C
>
struct
IsRecursiveContainerImpl
<
C
,
false
>
:
public
false_type
{};
// Since the IsRecursiveContainerImpl depends on the IsContainerTest we need to
// obey the same inconsistencies as the IsContainerTest, namely check if
// something is a container is relying on only const_iterator in C++11 and
// is relying on both const_iterator and iterator otherwise
template
<
typename
C
>
struct
IsRecursiveContainerImpl
<
C
,
true
>
{
template
<
typename
T
>
struct
VoidT
{
typedef
void
value_type
;
};
template
<
typename
C1
,
typename
VT
=
void
>
struct
PathTraits
{
typedef
typename
C1
::
const_iterator
::
value_type
value_type
;
};
template
<
typename
C2
>
struct
PathTraits
<
C2
,
typename
VoidT
<
typename
C2
::
iterator
::
value_type
>::
value_type
>
{
typedef
typename
C2
::
iterator
::
value_type
value_type
;
};
typedef
typename
IteratorTraits
<
typename
C
::
iterator
>::
value_type
value_type
;
#if GTEST_LANG_CXX11
typedef
std
::
is_same
<
value_type
,
C
>
type
;
#if GTEST_LANG_CXX11
typedef
typename
IteratorTraits
<
typename
C
::
const_iterator
>::
value_type
value_type
;
#else
typedef
is_same
<
value_type
,
C
>
type
;
typedef
typename
IteratorTraits
<
typename
C
::
iterator
>::
value_type
value_
type
;
#endif
typedef
is_same
<
value_type
,
C
>
type
;
};
// IsRecursiveContainer<Type> is a unary compile-time predicate that
...
...
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