Skip to content
Snippets Groups Projects
Commit 15e3e569 authored by Markus Blatt's avatar Markus Blatt
Browse files

operator* was removed from FieldVector<type,1>.

[[Imported from SVN: r777]]
parent 697789db
No related branches found
No related tags found
No related merge requests found
......@@ -306,7 +306,7 @@ namespace Dune {
}
result = 0;
for (int i=0; i<x.size(); i++)
result += x[i].operator*(y[i])*mask[i];
result += x[i]*(y[i])*mask[i];
result = cc.sum(result);
return;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment