From: Ralf Hartmann Date: Fri, 13 Feb 2004 07:19:03 +0000 (+0000) Subject: Add some missing std:: X-Git-Tag: v8.0.0~15793 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=af4ebd291d319be69da2e02d45fe5ec0dec186c6;p=dealii.git Add some missing std:: git-svn-id: https://svn.dealii.org/trunk@8463 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/lac/include/lac/eigen.h b/deal.II/lac/include/lac/eigen.h index 49cc34c962..a8e9c75b58 100644 --- a/deal.II/lac/include/lac/eigen.h +++ b/deal.II/lac/include/lac/eigen.h @@ -289,7 +289,7 @@ EigenPower::solve (double &value, // Check the change of the eigenvalue // Brrr, this is not really a good criterion - conv = this->control().check (iter, fabs(1./length-1./old_length)); + conv = this->control().check (iter, std::fabs(1./length-1./old_length)); } this->memory.free(Vy); @@ -405,7 +405,7 @@ EigenInverse::solve (double &value, // Check the residual conv = this->control().check (iter, res); } else { - conv = this->control().check (iter, fabs(1./value-1./old_value)); + conv = this->control().check (iter, std::fabs(1./value-1./old_value)); } old_value = value; }