From: bangerth Date: Mon, 14 Apr 2014 15:47:11 +0000 (+0000) Subject: Avoid default arguments on template parameters for function templates. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=66e6c3535725c9adfbb8cec65cb9663542533100;p=dealii-svn.git Avoid default arguments on template parameters for function templates. git-svn-id: https://svn.dealii.org/trunk@32773 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/mpi/codim_01.cc b/tests/mpi/codim_01.cc index 3c77850ef2..0125f5766e 100644 --- a/tests/mpi/codim_01.cc +++ b/tests/mpi/codim_01.cc @@ -1,7 +1,7 @@ // --------------------------------------------------------------------- // $Id: 2d_refinement_01.cc 31349 2013-10-20 19:07:06Z maier $ // -// Copyright (C) 2008 - 2013 by the deal.II authors +// Copyright (C) 2008 - 2014 by the deal.II authors // // This file is part of the deal.II library. // @@ -33,7 +33,7 @@ #include #include -template +template void write_vtk (const parallel::distributed::Triangulation &tria, const char *filename) { @@ -73,7 +73,7 @@ void test(std::ostream & /*out*/) GridGenerator::torus(tr, 1, 0.2); tr.refine_global(); - + tr.begin_active()->set_refine_flag(); (++(tr.begin_active()))->set_refine_flag(); @@ -112,6 +112,6 @@ int main(int argc, char *argv[]) MPILogInitAll init; deallog.push("2-3"); - test<2,3>(deallog.get_file_stream()); + test<2,3>(deallog.get_file_stream()); deallog.pop(); }