Skip to content
Snippets Groups Projects
Commit 3de3ec06 authored by Robert Klöfkorn's avatar Robert Klöfkorn
Browse files

make compile without ElementType.

[[Imported from SVN: r6374]]
parent 1636f44c
No related branches found
No related tags found
No related merge requests found
......@@ -39,7 +39,9 @@ void test(T& tuple)
c = Element<3>::get(tuple);
std::string s;
s = Element<4>::get(tuple);
typename ElementType<4,typename remove_const<T>::type>::Type s2 = Element<4>::get(tuple);
typedef typename tuple_element<4, typename remove_const<T>::type> :: type Type4 ;
Type4 s2 = Element<4>::get(tuple);
}
int iteratorTupleTest()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment