From: Wolfgang Bangerth Date: Wed, 15 Jan 2014 02:46:51 +0000 (+0000) Subject: Do not name an unused variable. X-Git-Tag: v8.2.0-rc1~1034 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3a04998dc9ca2e8a3745131bf9281a253083ef44;p=dealii.git Do not name an unused variable. git-svn-id: https://svn.dealii.org/trunk@32211 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/source/grid/tria_accessor.cc b/deal.II/source/grid/tria_accessor.cc index ec3a111957..7bccde417a 100644 --- a/deal.II/source/grid/tria_accessor.cc +++ b/deal.II/source/grid/tria_accessor.cc @@ -1,7 +1,7 @@ // --------------------------------------------------------------------- // $Id$ // -// Copyright (C) 1998 - 2013 by the deal.II authors +// Copyright (C) 1998 - 2014 by the deal.II authors // // This file is part of the deal.II library. // @@ -1224,7 +1224,7 @@ bool CellAccessor<3>::point_inside (const Point<3> &p) const return (GeometryInfo::is_inside_unit_cell (StaticMappingQ1::mapping.transform_real_to_unit_cell(cell_iterator, p))); } - catch (const Mapping::ExcTransformationFailed &e) + catch (const Mapping::ExcTransformationFailed &) { return false; }