From: Wolfgang Bangerth Date: Sun, 21 Aug 2011 03:55:12 +0000 (+0000) Subject: Explicitly use two template arguments even if one is defaulted. Clang X-Git-Tag: v8.0.0~3624 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b5c713522f31add1d285f93418893db8798474d3;p=dealii.git Explicitly use two template arguments even if one is defaulted. Clang trips over this otherwise (incorrectly so, but it's easy to work around anyway). git-svn-id: https://svn.dealii.org/trunk@24144 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/include/deal.II/grid/tria_boundary_lib.h b/deal.II/include/deal.II/grid/tria_boundary_lib.h index 0e9f53acdf..178f5983c0 100644 --- a/deal.II/include/deal.II/grid/tria_boundary_lib.h +++ b/deal.II/include/deal.II/grid/tria_boundary_lib.h @@ -1,7 +1,7 @@ //--------------------------------------------------------------------------- // $Id$ // -// Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2009 by the deal.II authors +// Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2009, 2011 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -735,8 +735,8 @@ HyperBallBoundary<3>::get_intermediate_points_on_quad ( template <> void HyperBallBoundary<1>:: -get_normals_at_vertices (const Triangulation<1>::face_iterator &, - Boundary<1>::FaceVertexNormals &) const; +get_normals_at_vertices (const Triangulation<1,1>::face_iterator &, + Boundary<1,1>::FaceVertexNormals &) const; template <> Point<1> HalfHyperBallBoundary<1>:: @@ -749,8 +749,8 @@ get_intermediate_points_on_quad (const Triangulation<1>::quad_iterator &, template <> void HalfHyperBallBoundary<1>:: -get_normals_at_vertices (const Triangulation<1>::face_iterator &, - Boundary<1>::FaceVertexNormals &) const; +get_normals_at_vertices (const Triangulation<1,1>::face_iterator &, + Boundary<1,1>::FaceVertexNormals &) const; template <> Point<1> HalfHyperShellBoundary<1>:: @@ -763,8 +763,8 @@ get_intermediate_points_on_quad (const Triangulation<1>::quad_iterator &, template <> void HalfHyperShellBoundary<1>:: -get_normals_at_vertices (const Triangulation<1>::face_iterator &, - Boundary<1>::FaceVertexNormals &) const; +get_normals_at_vertices (const Triangulation<1,1>::face_iterator &, + Boundary<1,1>::FaceVertexNormals &) const; #endif // DOXYGEN