From 5b64b8e8f18a915c1b1f6734646489114584b57d Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Wed, 3 Dec 2014 07:10:52 -0600 Subject: [PATCH] Patch by Lukas Korous: Only include if not on Microsoft Visual Studio. --- include/deal.II/lac/parallel_vector.templates.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/deal.II/lac/parallel_vector.templates.h b/include/deal.II/lac/parallel_vector.templates.h index bd5b84af25..12422c01c8 100644 --- a/include/deal.II/lac/parallel_vector.templates.h +++ b/include/deal.II/lac/parallel_vector.templates.h @@ -24,7 +24,9 @@ #include #include -#include +#ifndef _MSC_VER +# include +#endif DEAL_II_NAMESPACE_OPEN -- 2.39.5