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
200ff599
Commit
200ff599
authored
Nov 20, 2019
by
Gennadiy Civil
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2569 from bgianfo:master
PiperOrigin-RevId: 281321427
parents
4bf46623
0c469a5a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
gtest-internal.h
googletest/include/gtest/internal/gtest-internal.h
+3
-2
No files found.
googletest/include/gtest/internal/gtest-internal.h
View file @
200ff599
...
...
@@ -1185,7 +1185,7 @@ struct FlatTupleBase<FlatTuple<T...>, IndexSequence<Idx...>>
// Analog to std::tuple but with different tradeoffs.
// This class minimizes the template instantiation depth, thus allowing more
// elements tha
t
std::tuple would. std::tuple has been seen to require an
// elements tha
n
std::tuple would. std::tuple has been seen to require an
// instantiation depth of more than 10x the number of elements in some
// implementations.
// FlatTuple and ElemFromList are not recursive and have a fixed depth
...
...
@@ -1196,7 +1196,8 @@ template <typename... T>
class
FlatTuple
:
private
FlatTupleBase
<
FlatTuple
<
T
...
>
,
typename
MakeIndexSequence
<
sizeof
...(
T
)
>::
type
>
{
using
Indices
=
typename
FlatTuple
::
FlatTupleBase
::
Indices
;
using
Indices
=
typename
FlatTupleBase
<
FlatTuple
<
T
...
>
,
typename
MakeIndexSequence
<
sizeof
...(
T
)
>::
type
>::
Indices
;
public
:
FlatTuple
()
=
default
;
...
...
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