From: bangerth Date: Sun, 21 Aug 2011 03:59:09 +0000 (+0000) Subject: Explicitly use two template arguments even if one is defaulted. Clang X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=693a258447977242e84671bfa46e289e8d4b6567;p=dealii-svn.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@24147 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/source/grid/tria_boundary_lib.cc b/deal.II/source/grid/tria_boundary_lib.cc index d9e2af83bc..774cc39dc0 100644 --- a/deal.II/source/grid/tria_boundary_lib.cc +++ b/deal.II/source/grid/tria_boundary_lib.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2009, 2010 by the deal.II authors +// Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2009, 2010, 2011 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -214,7 +214,7 @@ template <> void CylinderBoundary<1>:: get_normals_at_vertices (const Triangulation<1>::face_iterator &, - Boundary<1>::FaceVertexNormals &) const + Boundary<1,1>::FaceVertexNormals &) const { Assert (false, ExcImpossibleInDim(1)); } @@ -436,7 +436,7 @@ template<> void ConeBoundary<1>:: get_normals_at_vertices (const Triangulation<1>::face_iterator &, - Boundary<1>::FaceVertexNormals &) const + Boundary<1,1>::FaceVertexNormals &) const { Assert (false, ExcImpossibleInDim (1)); } @@ -736,7 +736,7 @@ template <> void HyperBallBoundary<1>:: get_normals_at_vertices (const Triangulation<1>::face_iterator &, - Boundary<1>::FaceVertexNormals &) const + Boundary<1,1>::FaceVertexNormals &) const { Assert (false, ExcImpossibleInDim(1)); } @@ -894,7 +894,7 @@ template <> void HalfHyperBallBoundary<1>:: get_normals_at_vertices (const Triangulation<1>::face_iterator &, - Boundary<1>::FaceVertexNormals &) const + Boundary<1,1>::FaceVertexNormals &) const { Assert (false, ExcImpossibleInDim(1)); } @@ -1183,7 +1183,7 @@ template <> void HalfHyperShellBoundary<1>:: get_normals_at_vertices (const Triangulation<1>::face_iterator &, - Boundary<1>::FaceVertexNormals &) const + Boundary<1,1>::FaceVertexNormals &) const { Assert (false, ExcImpossibleInDim(1)); }