From: Lukas Korous Date: Tue, 15 Sep 2015 15:29:37 +0000 (+0200) Subject: MSVC fix -> add 'dealii::' root namespace explicitely where MSVC fails to understand... X-Git-Tag: v8.4.0-rc2~415^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F1612%2Fhead;p=dealii.git MSVC fix -> add 'dealii::' root namespace explicitely where MSVC fails to understand ' internal::' without 'dealii::' --- diff --git a/include/deal.II/base/tensor.h b/include/deal.II/base/tensor.h index 1f75f7a7da..5c7e314411 100644 --- a/include/deal.II/base/tensor.h +++ b/include/deal.II/base/tensor.h @@ -892,7 +892,7 @@ inline typename Tensor::value_type & Tensor::operator[] (const unsigned int i) { - return internal::TensorSubscriptor::subscript(values, i, internal::int2type()); + return dealii::internal::TensorSubscriptor::subscript(values, i, dealii::internal::int2type()); } @@ -901,7 +901,7 @@ inline const typename Tensor::value_type & Tensor::operator[] (const unsigned int i) const { - return internal::TensorSubscriptor::subscript(values, i, internal::int2type()); + return dealii::internal::TensorSubscriptor::subscript(values, i, dealii::internal::int2type()); }