From c8b666be933cb6a25329049ed67261b5f7d19ac1 Mon Sep 17 00:00:00 2001 From: bangerth Date: Wed, 15 Jan 2014 02:46:51 +0000 Subject: [PATCH] Do not name an unused variable. git-svn-id: https://svn.dealii.org/trunk@32211 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/source/grid/tria_accessor.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } -- 2.39.5