Skip to content
Snippets Groups Projects
Commit 985385c4 authored by Oliver Sander's avatar Oliver Sander
Browse files

Don't use the Element<N>::get way of accessing tuple elements.

It is not standard conforming.

[[Imported from SVN: r6657]]
parent 12535d1e
No related branches found
No related tags found
No related merge requests found
......@@ -79,7 +79,7 @@ int iteratorTupleTest()
assert(get<2>(tuple_) == v.end());
assert(get<0>(tuple_) != v.end());
assert(get<1>(tuple_)!= Element<2>::get(tuple_));
assert(get<1>(tuple_) != get<2>(tuple_));
return ret;
}
......
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