Mentions légales du service

Skip to content
Snippets Groups Projects
Commit b3d0d06e authored by Olivier COULAUD's avatar Olivier COULAUD
Browse files

Add flag for Intel Compiler

parent bab58187
No related branches found
No related tags found
No related merge requests found
......@@ -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){}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment