From: bangerth Date: Fri, 17 Aug 2007 19:10:56 +0000 (+0000) Subject: Fix missing closing braces. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d024d95de59685e756838122c4c65de3e5222fab;p=dealii-svn.git Fix missing closing braces. git-svn-id: https://svn.dealii.org/trunk@14968 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-27/step-27.cc b/deal.II/examples/step-27/step-27.cc index 8ca74046dc..6a10ae239e 100644 --- a/deal.II/examples/step-27/step-27.cc +++ b/deal.II/examples/step-27/step-27.cc @@ -872,7 +872,7 @@ estimate_smoothness (Vector &smoothness_indicators) const // Gauss formula as many times as // the maximal exponent we use for // the term $e^{i{\bf k}\cdot{\bf - // x}$: + // x}}$: QGauss<1> base_quadrature (2); QIterated quadrature (base_quadrature, N); @@ -882,7 +882,7 @@ estimate_smoothness (Vector &smoothness_indicators) const // right size, and integrate each entry of // the matrix numerically as ${\cal // F}_{{\bf k},j}=\sum_q e^{i{\bf k}\cdot - // {\bf x}\varphi_j({\bf x}_q) + // {\bf x}}\varphi_j({\bf x}_q) // w_q$, where $x_q$ // are the quadrature points and $w_q$ are // the quadrature weights. Note that the