From: mwichro <32612987+mwichro@users.noreply.github.com> Date: Thu, 6 Sep 2018 15:28:03 +0000 (+0200) Subject: Fix: 'iota' is not a member of 'std' X-Git-Tag: v9.1.0-rc1~745^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bf1c89b57939aff31f67bd36d98fa647b7149f2f;p=dealii.git 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 --- diff --git a/source/base/mpi.cc b/source/base/mpi.cc index b7fa8393c2..8e952529ae 100644 --- a/source/base/mpi.cc +++ b/source/base/mpi.cc @@ -24,6 +24,7 @@ #include #include +#include #include #ifdef DEAL_II_WITH_TRILINOS