From: Lukas Korous Date: Fri, 13 Feb 2015 13:40:54 +0000 (+0100) Subject: Small syntax fix for MSVC. X-Git-Tag: v8.3.0-rc1~466^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F533%2Fhead;p=dealii.git Small syntax fix for MSVC. --- diff --git a/include/deal.II/lac/parallel_vector.h b/include/deal.II/lac/parallel_vector.h index 15885c4730..16165db2e9 100644 --- a/include/deal.II/lac/parallel_vector.h +++ b/include/deal.II/lac/parallel_vector.h @@ -1257,7 +1257,11 @@ namespace parallel Vector & Vector::operator = (const Vector &c) { +#ifdef _MSC_VER + return this->operator=(c); +#else return this->template operator=(c); +#endif }