From: Timo Heister Date: Fri, 27 Feb 2015 02:28:24 +0000 (-0500) Subject: no cxx1 test fixes X-Git-Tag: v8.3.0-rc1~413^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3b717120d322f8d382bce0187750f22fdf4d6c9f;p=dealii.git no cxx1 test fixes Fix two tests that won't compile without c++ 11 --- diff --git a/tests/arpack/step-36_ar.cc b/tests/arpack/step-36_ar.cc index f84ebdc432..400c7c344e 100644 --- a/tests/arpack/step-36_ar.cc +++ b/tests/arpack/step-36_ar.cc @@ -78,7 +78,7 @@ namespace Step36 SparsityPattern sparsity_pattern; SparseMatrix stiffness_matrix, mass_matrix; std::vector > eigenfunctions; - std::vector> eigenvalues; + std::vector > eigenvalues; ConstraintMatrix constraints; }; diff --git a/tests/deal.II/nedelec_non_rect_face.cc b/tests/deal.II/nedelec_non_rect_face.cc index 283ad77f4f..956849aede 100644 --- a/tests/deal.II/nedelec_non_rect_face.cc +++ b/tests/deal.II/nedelec_non_rect_face.cc @@ -323,7 +323,7 @@ namespace Maxwell // Neumann storage std::vector > neumann_value_list(n_face_q_points, Vector(fe.n_components())); - std::vector> normal_vector_list(fe_face_values.get_normal_vectors()); + std::vector > normal_vector_list(fe_face_values.get_normal_vectors()); Tensor<1,dim> neumann_value_vector(dim); Tensor<1,dim> neumann_value(dim); Tensor<1,dim> normal_vector;