From 67f3fd910ea7aa9eba5cad5496a9354387d766fb Mon Sep 17 00:00:00 2001 From: wolf Date: Mon, 12 Mar 2001 08:09:11 +0000 Subject: [PATCH] Fix some missing includes and typenames that prevented compilation when include files were in different order than normal. git-svn-id: https://svn.dealii.org/trunk@4185 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/include/numerics/data_out.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/deal.II/deal.II/include/numerics/data_out.h b/deal.II/deal.II/include/numerics/data_out.h index a29742edf8..cce7e7fa04 100644 --- a/deal.II/deal.II/include/numerics/data_out.h +++ b/deal.II/deal.II/include/numerics/data_out.h @@ -10,12 +10,12 @@ #define __deal2__data_out_h -#include #include #include +#include +#include -template class DoFHandler; /** * This is an abstract class which provides the functionality to generate @@ -409,7 +409,7 @@ class DataOut_DoFData : public DataOutInterface * in the output routines of the base * classes. */ - typename std::vector > patches; + typename std::vector > patches; /** * Function by which the base -- 2.39.5