Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
ScalFMM
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
solverstack
ScalFMM
Commits
dbdb0964
Commit
dbdb0964
authored
6 years ago
by
ESTERIE Pierre
Browse files
Options
Downloads
Patches
Plain Diff
Remove decltype for intel compiler in c++14
parent
cbcf3609
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Contribs/inria/tcli/impl_tcli/utils.hpp
+2
-0
2 additions, 0 deletions
Contribs/inria/tcli/impl_tcli/utils.hpp
with
2 additions
and
0 deletions
Contribs/inria/tcli/impl_tcli/utils.hpp
+
2
−
0
View file @
dbdb0964
...
...
@@ -80,9 +80,11 @@ auto for_each_in_tuple_impl(inria::index_sequence<Is...>, Tuple&& t, F&& func, A
*/
template
<
class
Tuple
,
class
F
,
class
...
Args
>
auto
for_each_in_tuple
(
Tuple
&&
t
,
F
&&
func
,
Args
&&
...
args
)
#ifndef __INTEL_COMPILER
->
decltype
(
for_each_in_tuple_impl
(
inria
::
make_index_sequence
<
std
::
tuple_size
<
typename
std
::
decay
<
Tuple
>::
type
>::
value
>
(),
std
::
forward
<
Tuple
>
(
t
),
std
::
forward
<
F
>
(
func
),
std
::
forward
<
Args
>
(
args
)...))
#endif
{
return
for_each_in_tuple_impl
(
inria
::
make_index_sequence
<
std
::
tuple_size
<
typename
std
::
decay
<
Tuple
>::
type
>::
value
>
(),
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment