From: Wolfgang Bangerth Date: Sat, 15 Aug 2015 01:44:13 +0000 (-0500) Subject: Fix testcase. X-Git-Tag: v8.4.0-rc2~603^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=060e0ffcedd93f87ab8c24c8760f8aca6e88b66c;p=dealii.git Fix testcase. The all-headers/distributed/tria_base.h.debug testcase failed because the compiler is missing a forward declaration of parallel::Triangulation. Provide this. --- diff --git a/include/deal.II/grid/tria_accessor.templates.h b/include/deal.II/grid/tria_accessor.templates.h index 41b226da8d..641ecb9494 100644 --- a/include/deal.II/grid/tria_accessor.templates.h +++ b/include/deal.II/grid/tria_accessor.templates.h @@ -26,8 +26,7 @@ #include #include #include -#include -#include +#include #include @@ -35,6 +34,8 @@ DEAL_II_NAMESPACE_OPEN namespace parallel { + template class Triangulation; + namespace distributed { template class Triangulation;