From: bangerth Date: Tue, 25 Oct 2011 08:18:37 +0000 (+0000) Subject: Fix missing include file with gcc4.6.1 and MPI. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2fa4e6e2af31184f93aa106e036ddb253b2f53c3;p=dealii-svn.git Fix missing include file with gcc4.6.1 and MPI. git-svn-id: https://svn.dealii.org/trunk@24672 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/doc/news/changes.h b/deal.II/doc/news/changes.h index d8460dc407..e145052e8a 100644 --- a/deal.II/doc/news/changes.h +++ b/deal.II/doc/news/changes.h @@ -34,7 +34,11 @@ inconvenience this causes.

General

    -
  1. +
  2. Fixed: deal.II could not be compiled with gcc 4.6.1 when MPI is +enabled due to a missing include file in file +source/base/utilities.cc. This is now fixed. +
    +(Wolfgang Bangerth, 2011/10/25)
diff --git a/deal.II/source/base/utilities.cc b/deal.II/source/base/utilities.cc index 7174b32120..91d389e882 100644 --- a/deal.II/source/base/utilities.cc +++ b/deal.II/source/base/utilities.cc @@ -19,6 +19,7 @@ #include #include #include +#include #include #include #include