From f01c5d5ff64089fb32c98a1c6c0216baedfe0766 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Fri, 4 Jun 2004 16:25:34 +0000 Subject: [PATCH] Properly qualify std::copy git-svn-id: https://svn.dealii.org/trunk@9384 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/include/lac/vector.templates.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()); } } -- 2.39.5