From c38778079deb84317a8eba7164ac604c6f764eca Mon Sep 17 00:00:00 2001 From: bangerth Date: Mon, 7 Jan 2013 01:06:51 +0000 Subject: [PATCH] Fix an assertion that was incorrectly changed when converting deprecated function calls. git-svn-id: https://svn.dealii.org/trunk@27949 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/include/deal.II/fe/fe.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deal.II/include/deal.II/fe/fe.h b/deal.II/include/deal.II/fe/fe.h index 70565a9095..15c34dcd3e 100644 --- a/deal.II/include/deal.II/fe/fe.h +++ b/deal.II/include/deal.II/fe/fe.h @@ -1,7 +1,7 @@ //--------------------------------------------------------------------------- // $Id$ // -// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2010, 2011, 2012 by the deal.II authors +// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2010, 2011, 2012, 2013 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -2875,7 +2875,7 @@ FiniteElement::face_system_to_component_index (const unsigned int // // in 1d, the face index is equal // to the cell index - Assert (is_primitive(this->face_to_cell_index(0, index)), + Assert (is_primitive(this->face_to_cell_index(index, 0)), (typename FiniteElement::ExcShapeFunctionNotPrimitive(index)) ); return face_system_to_component_table[index]; -- 2.39.5