From: David Wells Date: Thu, 12 Nov 2015 19:41:42 +0000 (-0500) Subject: More VECTOR -> VectorType X-Git-Tag: v8.4.0-rc2~230^2~6 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2392f063c3498a61e63f8e8ed817091941c21182;p=dealii.git More VECTOR -> VectorType --- diff --git a/tests/slepc/solve_01.cc b/tests/slepc/solve_01.cc index 41e874f3da..b28c2d4d31 100644 --- a/tests/slepc/solve_01.cc +++ b/tests/slepc/solve_01.cc @@ -35,12 +35,12 @@ #include #include -template +template void check_solve( SOLVER &solver, const SolverControl &solver_control, const MATRIX &A, const MATRIX &B, - std::vector &u, std::vector &v) + std::vector &u, std::vector &v) { deallog << "Solver type: " << typeid(solver).name() << std::endl; diff --git a/tests/slepc/solve_04.cc b/tests/slepc/solve_04.cc index 5514930dbf..dd63e04d9f 100644 --- a/tests/slepc/solve_04.cc +++ b/tests/slepc/solve_04.cc @@ -35,12 +35,12 @@ #include #include -template +template void check_solve( SOLVER &solver, const SolverControl &solver_control, const MATRIX &A, - std::vector &u, std::vector &v) + std::vector &u, std::vector &v) { deallog << "Solver type: " << typeid(solver).name() << std::endl;