From: Wolfgang Bangerth Date: Thu, 30 Oct 2014 15:14:56 +0000 (-0500) Subject: Make code slightly easier to read. X-Git-Tag: v8.2.0-rc1~93^2~3 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cebfc565b5401b5d76f8c742abf3652cfa455ddf;p=dealii.git Make code slightly easier to read. --- diff --git a/source/fe/mapping_q.cc b/source/fe/mapping_q.cc index 1a11031876..7e55c522a1 100644 --- a/source/fe/mapping_q.cc +++ b/source/fe/mapping_q.cc @@ -1,6 +1,6 @@ // --------------------------------------------------------------------- // -// Copyright (C) 2001 - 2013 by the deal.II authors +// Copyright (C) 2001 - 2014 by the deal.II authors // // This file is part of the deal.II library. // @@ -786,7 +786,9 @@ MappingQ::add_line_support_points (const typename Triangulation &manifold = ( ( line->manifold_id() == numbers::invalid_manifold_id ) && - ( dim < spacedim ) ? cell->get_manifold() : + ( dim < spacedim ) + ? + cell->get_manifold() : line->get_manifold() ); get_intermediate_points_on_object (manifold, line, line_points);