From af69d4cecc22ab3511eef41fb37f78965efbbfa0 Mon Sep 17 00:00:00 2001 From: Lukas Korous Date: Fri, 13 Feb 2015 14:40:54 +0100 Subject: [PATCH] Small syntax fix for MSVC. --- include/deal.II/lac/parallel_vector.h | 4 ++++ 1 file changed, 4 insertions(+) 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 } -- 2.39.5