From: Wolfgang Bangerth Date: Fri, 4 Jun 2004 16:25:34 +0000 (+0000) Subject: Properly qualify std::copy X-Git-Tag: v8.0.0~15075 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f01c5d5ff64089fb32c98a1c6c0216baedfe0766;p=dealii.git Properly qualify std::copy git-svn-id: https://svn.dealii.org/trunk@9384 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 0710bbcd04..460f8577eb 100644 --- a/deal.II/lac/include/lac/vector.templates.h +++ b/deal.II/lac/include/lac/vector.templates.h @@ -74,7 +74,7 @@ Vector::Vector (const Vector& v) { val = new Number[maxdim]; Assert (val != 0, ExcOutOfMemory()); - copy (v.begin(), v.end(), begin()); + std::copy (v.begin(), v.end(), begin()); } }