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

Replace hard-coded double by template parameter, to make complex data work

Patch by Matthias Wohlmuth.  Thanks!

[[Imported from SVN: r1726]]
parent 51f3a3d4
No related branches found
No related tags found
No related merge requests found
......@@ -846,7 +846,7 @@ namespace Dune
if(header.type==array_type)
DUNE_THROW(Dune::NotImplemented, "Array format currently not supported for matrices!");
readSparseEntries(matrix, istr, entries, header, NumericWrapper<double>());
readSparseEntries(matrix, istr, entries, header, NumericWrapper<T>());
}
template<typename M>
......
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