From 4875bf46ee8df1f83708f008b47bf31f1bdf9b1f Mon Sep 17 00:00:00 2001 From: mwichro <32612987+mwichro@users.noreply.github.com> Date: Thu, 6 Sep 2018 17:28:03 +0200 Subject: [PATCH] Fix: 'iota' is not a member of 'std' Fixes GCC compilation error: /source/base/mpi.cc:129:7: error: 'iota' is not a member of 'std' That appears on newer gcc --- source/base/mpi.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/source/base/mpi.cc b/source/base/mpi.cc index e72a175764..38e8122f10 100644 --- a/source/base/mpi.cc +++ b/source/base/mpi.cc @@ -23,6 +23,7 @@ #include #include +#include #include #ifdef DEAL_II_WITH_TRILINOS -- 2.39.5