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

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

Reference: core/dune-common#77
parent e4446c4a
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.
Please register or to comment