Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Tiago Peixoto
graph-tool
Commits
a875e876
Commit
a875e876
authored
Oct 25, 2015
by
Tiago Peixoto
Browse files
Get rid of clang++ warning
parent
e809a910
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/graph/mpl_nested_loop.hh
View file @
a875e876
...
@@ -183,7 +183,7 @@ template <class... TRS, class Action, class... Args>
...
@@ -183,7 +183,7 @@ template <class... TRS, class Action, class... Args>
bool
nested_for_each
(
Action
a
,
Args
...
args
)
bool
nested_for_each
(
Action
a
,
Args
...
args
)
{
{
bool
found
=
false
;
bool
found
=
false
;
std
::
array
<
any
,
sizeof
...(
args
)
>
as
{
args
...};
std
::
array
<
any
,
sizeof
...(
args
)
>
as
{
{
args
...}
}
;
auto
b
=
dispatch
<
Action
>
(
a
,
&
as
[
0
],
found
);
auto
b
=
dispatch
<
Action
>
(
a
,
&
as
[
0
],
found
);
nested_for_each_imp
<
TRS
...
>
(
b
);
nested_for_each_imp
<
TRS
...
>
(
b
);
return
found
;
return
found
;
...
...
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