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

int as type for the field of scaledidmatrix causes ambiguities because there...

int as type for the field of scaledidmatrix causes ambiguities because there are no std::sqrt(int) and std::fabs(int)

[[Imported from SVN: r1148]]
parent 15abaf65
No related branches found
No related tags found
No related merge requests found
......@@ -54,7 +54,7 @@ int main()
try {
test_matrix<float, 1>();
test_matrix<double, 1>();
test_matrix<int, 10>();
//test_matrix<int, 10>(); Does not compile with icc because there is no std::sqrt(int) std::fabs(int)
test_matrix<double, 5>();
}
catch (Dune::Exception & e)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment