From 9a1d4bf9edfd491a9159c029f6bcb4ca7dd81333 Mon Sep 17 00:00:00 2001 From: Oliver Sander <sander@igpm.rwth-aachen.de> Date: Tue, 3 Sep 2013 16:29:10 +0000 Subject: [PATCH] specify the number type when assigning from scalar [[Imported from SVN: r9385]] --- dune/gfe/rotation.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dune/gfe/rotation.hh b/dune/gfe/rotation.hh index de0ddbea..c84bc60a 100644 --- a/dune/gfe/rotation.hh +++ b/dune/gfe/rotation.hh @@ -627,7 +627,7 @@ public: static void getSecondDerivativesOfDirectors(Dune::array<Tensor3<T,3, 4, 4>, 3>& dd_dq_dq) { for (int i=0; i<3; i++) - dd_dq_dq[i] = 0; + dd_dq_dq[i] = T(0); dd_dq_dq[0][0][0][0] = 2; dd_dq_dq[0][0][1][1] = -2; dd_dq_dq[0][0][2][2] = -2; dd_dq_dq[0][0][3][3] = 2; dd_dq_dq[0][1][0][1] = 2; dd_dq_dq[0][1][1][0] = 2; dd_dq_dq[0][1][2][3] = 2; dd_dq_dq[0][1][3][2] = 2; -- GitLab