Skip to content
Snippets Groups Projects
Commit 7a643faf authored by Ansgar Burchardt's avatar Ansgar Burchardt
Browse files

Merge branch 'bugfix/resolve-ambiguous-size-call' into 'master'

resolve ambiguous call by explicitly calling `Dune::Hybrid::size`

See merge request !107
parents e4446c4a 6b9e0fb8
No related branches found
No related tags found
1 merge request!107resolve ambiguous call by explicitly calling `Dune::Hybrid::size`
Pipeline #
......@@ -259,7 +259,7 @@ namespace Dune {
template <typename... Args>
std::ostream& operator<< (std::ostream& s, const MultiTypeBlockVector<Args...>& v) {
using namespace Dune::Hybrid;
forEach(integralRange(size(v)), [&](auto&& i) {
forEach(integralRange(Dune::Hybrid::size(v)), [&](auto&& i) {
s << "\t(" << i << "):\n" << v[i] << "\n";
});
return s;
......
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