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
Admin message
GitLab upgrade completed. Current version is 17.11.4.
Show more breadcrumbs
solverstack
ScalFMM
Commits
b3d0d06e
Commit
b3d0d06e
authored
7 years ago
by
Olivier COULAUD
Browse files
Options
Downloads
Patches
Plain Diff
Add flag for Intel Compiler
parent
bab58187
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
Src/Utils/variadic_container.hpp
+5
-1
5 additions, 1 deletion
Src/Utils/variadic_container.hpp
with
5 additions
and
1 deletion
Src/Utils/variadic_container.hpp
+
5
−
1
View file @
b3d0d06e
...
...
@@ -1309,7 +1309,11 @@ public:
using
pointer_tuple
=
std
::
tuple
<
Types
*
...
>
;
using
typename
base_t
::
tuple
;
#if def __INTEL_COMPILER
using
std
::
tuple
<
Types
*
...
>::
tuple
;
#else
using
typename
base_t
::
tuple
;
#endif
variadic_vector_iterator
(
base_t
tup_in
)
:
base_t
(
tup_in
){}
variadic_vector_iterator
(
Types
*
...
val
)
:
base_t
(
val
...){}
variadic_vector_iterator
(
base_t
tup_in
,
base_seq
t
)
:
base_t
(
tup_in
){}
...
...
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