From: Wolfgang Bangerth Date: Tue, 4 Oct 2016 20:22:18 +0000 (-0600) Subject: Do not use 'typename' outside templates. X-Git-Tag: v8.5.0-rc1~606^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F3194%2Fhead;p=dealii.git Do not use 'typename' outside templates. --- diff --git a/tests/lac/solver_memorytest.cc b/tests/lac/solver_memorytest.cc index ea3a50f9ff..2145fccbac 100644 --- a/tests/lac/solver_memorytest.cc +++ b/tests/lac/solver_memorytest.cc @@ -1,6 +1,6 @@ // --------------------------------------------------------------------- // -// Copyright (C) 1998 - 2015 by the deal.II authors +// Copyright (C) 1998 - 2016 by the deal.II authors // // This file is part of the deal.II library. // @@ -97,7 +97,7 @@ int main() check_solve >(A,u,f); // test use_default_residual=false case - check_solve >(A,u,f, typename SolverGMRES<>::AdditionalData(30, false, false)); + check_solve >(A,u,f, SolverGMRES<>::AdditionalData(30, false, false)); deallog.pop(); }