From: Matthias Maier Date: Mon, 7 Sep 2015 22:16:09 +0000 (-0500) Subject: Testsuite: Fix invalid constructor calls X-Git-Tag: v8.4.0-rc2~462^2~3 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=23e88eea1a8825a46c28e69e7e3d118c0ab8b43f;p=dealii.git Testsuite: Fix invalid constructor calls This should have never been syntactically correct code... --- diff --git a/tests/fe/nedelec_non_rect_face.cc b/tests/fe/nedelec_non_rect_face.cc index f28b7b0b63..fd15b4cd99 100644 --- a/tests/fe/nedelec_non_rect_face.cc +++ b/tests/fe/nedelec_non_rect_face.cc @@ -215,7 +215,7 @@ namespace Maxwell // storage for computed sol: std::vector > sol(n_q_points); - Tensor<1,dim> curlsol(n_q_points); + Tensor<1,dim> curlsol; double h_curl_norm=0.0; @@ -319,13 +319,13 @@ namespace Maxwell //RHS storage: std::vector > rhs_value_list(n_q_points, Vector(fe.n_components())); - Tensor<1,dim> rhs_value_vector(dim); + Tensor<1,dim> rhs_value_vector; // Neumann storage std::vector > neumann_value_list(n_face_q_points, Vector(fe.n_components())); std::vector > normal_vector_list(fe_face_values.get_all_normal_vectors()); - Tensor<1,dim> neumann_value_vector(dim); - Tensor<1,dim> neumann_value(dim); + Tensor<1,dim> neumann_value_vector; + Tensor<1,dim> neumann_value; Tensor<1,dim> normal_vector; // loop over all cells: