Skip to content
Snippets Groups Projects
Commit 86854278 authored by Christoph Grüninger's avatar Christoph Grüninger
Browse files

[dynmatrixtest]

Add excplicit cast from double literal 0.5 to field_type to avoid Clang warnings.

[[Imported from SVN: r7034]]
parent 5991ff6b
No related branches found
No related tags found
No related merge requests found
......@@ -155,9 +155,9 @@ void test_mult(DynamicMatrix<K>& A,
A.mmv(v,f);
A.mmtv(f,v);
A.mmhv(f,v);
A.usmv(0.5,v,f);
A.usmtv(0.5,f,v);
A.usmhv(0.5,f,v);
A.usmv((K)0.5,v,f);
A.usmtv((K)0.5,f,v);
A.usmhv((K)0.5,f,v);
}
......
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