From: bangerth Date: Wed, 15 Jan 2014 02:51:28 +0000 (+0000) Subject: Fully qualify a namespace to make MS VC++ happy. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=80b1b9c5ec6346b44bc11b4dac0a43ae4a43db68;p=dealii-svn.git Fully qualify a namespace to make MS VC++ happy. git-svn-id: https://svn.dealii.org/trunk@32213 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/include/deal.II/lac/vector.h b/deal.II/include/deal.II/lac/vector.h index 8dae825247..ceea283c5d 100644 --- a/deal.II/include/deal.II/lac/vector.h +++ b/deal.II/include/deal.II/lac/vector.h @@ -1,7 +1,7 @@ // --------------------------------------------------------------------- // $Id$ // -// Copyright (C) 1999 - 2013 by the deal.II authors +// Copyright (C) 1999 - 2014 by the deal.II authors // // This file is part of the deal.II library. // @@ -1233,7 +1233,7 @@ inline Vector & Vector::operator = (const Vector &v) { - internal::Vector::copy_vector (v, *this); + dealii::internal::Vector::copy_vector (v, *this); return *this; }