From: bangerth Date: Wed, 9 Apr 2014 21:33:07 +0000 (+0000) Subject: Qualify a number of names fully to make MS VS++ happy. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=498f1c25572d1bb3c485da3393ca85b6d2a1a415;p=dealii-svn.git Qualify a number of names fully to make MS VS++ happy. git-svn-id: https://svn.dealii.org/trunk@32753 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/include/deal.II/base/aligned_vector.h b/deal.II/include/deal.II/base/aligned_vector.h index 06031a4fbe..07f1a24ecb 100644 --- a/deal.II/include/deal.II/base/aligned_vector.h +++ b/deal.II/include/deal.II/base/aligned_vector.h @@ -505,7 +505,7 @@ AlignedVector::resize (const size_type size_in, // now _size is set correctly, need to set the // values if (size_in > old_size) - internal::AlignedVectorSet (size_in-old_size, init, _data+old_size); + dealii::internal::AlignedVectorSet (size_in-old_size, init, _data+old_size); } @@ -648,7 +648,7 @@ inline void AlignedVector::fill (const T &value) { - internal::AlignedVectorSet (size(), value, _data); + dealii::internal::AlignedVectorSet (size(), value, _data); }