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

clang fix

parent f3a34ffd
No related branches found
No related tags found
1 merge request!270Implement superlu for scalar valued matrices
Pipeline #16029 passed
......@@ -448,7 +448,7 @@ namespace Dune
mat->rowindex[marker[colindex*m+j]]=rowindex*n+i;
Hybrid::ifElse(IsNumber<typename M::block_type>(),
[&](auto id) {
mat->values[marker[colindex*m+j]]=(*col);
mat->values[marker[colindex*m+j]]=id(*col);
},
[&](auto id) {
mat->values[marker[colindex*m+j]]=id(*col)[i][j];
......
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