From 940129df494037eada8dd7afa2fd614fdaf07a89 Mon Sep 17 00:00:00 2001 From: Luca Heltai Date: Sat, 25 Jul 2015 17:13:53 +0200 Subject: [PATCH] Fixed indentation. --- source/base/quadrature_lib.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/base/quadrature_lib.cc b/source/base/quadrature_lib.cc index 476ba6aaec..e59b3c9968 100644 --- a/source/base/quadrature_lib.cc +++ b/source/base/quadrature_lib.cc @@ -771,10 +771,10 @@ QGaussLogR<1>::QGaussLogR(const unsigned int n, { Assert( this->quadrature_points[i] != origin, ExcMessage("The singularity cannot be on a Gauss point of the same order!") ); - double denominator = std::log(std::abs( (this->quadrature_points[i]-origin)[0] )/alpha); - Assert( denominator != 0.0, - ExcMessage("The quadrature formula you are using does not allow to " - "factor out the singularity, which is zero at one point.")); + double denominator = std::log(std::abs( (this->quadrature_points[i]-origin)[0] )/alpha); + Assert( denominator != 0.0, + ExcMessage("The quadrature formula you are using does not allow to " + "factor out the singularity, which is zero at one point.")); this->weights[i] /= denominator; } } -- 2.39.5