From: guido Date: Thu, 15 Aug 2002 18:30:14 +0000 (+0000) Subject: standard name space forgotten X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f7311d6aa928fd6a1d5755445e81837a570f56cd;p=dealii-svn.git standard name space forgotten git-svn-id: https://svn.dealii.org/trunk@6330 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/lac/include/lac/vector.templates.h b/deal.II/lac/include/lac/vector.templates.h index b29934c443..d5a1a0d8c4 100644 --- a/deal.II/lac/include/lac/vector.templates.h +++ b/deal.II/lac/include/lac/vector.templates.h @@ -263,9 +263,9 @@ Number Vector::lp_norm (const Number p) const }; // add up remaining elements while (ptr != end()) - sum0 += pow(std::fabs(*ptr++), p); + sum0 += std::pow(std::fabs(*ptr++), p); - return pow(sum0+sum1+sum2+sum3, 1./p); + return std::pow(sum0+sum1+sum2+sum3, 1./p); };