From 868542781dafd4df49ee9855f88eb9985b386ded Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoph=20Gr=C3=BCninger?= <gruenich@dune-project.org> Date: Wed, 10 Oct 2012 13:01:57 +0000 Subject: [PATCH] [dynmatrixtest] Add excplicit cast from double literal 0.5 to field_type to avoid Clang warnings. [[Imported from SVN: r7034]] --- dune/common/test/dynmatrixtest.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dune/common/test/dynmatrixtest.cc b/dune/common/test/dynmatrixtest.cc index b97f233a6..29c032197 100644 --- a/dune/common/test/dynmatrixtest.cc +++ b/dune/common/test/dynmatrixtest.cc @@ -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); } -- GitLab