From: bangerth Date: Wed, 15 Jan 2014 02:46:51 +0000 (+0000) Subject: Do not name an unused variable. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c8b666be933cb6a25329049ed67261b5f7d19ac1;p=dealii-svn.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; }