From 9df1f5528d0377f5f4add0d92915ed48f0017b13 Mon Sep 17 00:00:00 2001 From: bangerth Date: Wed, 13 Feb 2013 04:09:23 +0000 Subject: [PATCH] Disambiguate a call. git-svn-id: https://svn.dealii.org/trunk@28356 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/source/fe/mapping_q1.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deal.II/source/fe/mapping_q1.cc b/deal.II/source/fe/mapping_q1.cc index 336eedd740..6e255ff787 100644 --- a/deal.II/source/fe/mapping_q1.cc +++ b/deal.II/source/fe/mapping_q1.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 by the deal.II authors +// Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 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 @@ -780,7 +780,7 @@ MappingQ1::fill_fe_values ( // 1e12 in 2D. might want to find a finer // (dimension-independent) criterion Assert (det > 1e-12*Utilities::fixed_power(cell->diameter()/ - std::sqrt(dim)), + std::sqrt(double(dim))), (typename Mapping::ExcDistortedMappedCell(cell->center(), point))); JxW_values[point] = weights[point] * det; -- 2.39.5