From e26390d200118876dc543edab814039253862346 Mon Sep 17 00:00:00 2001 From: Rene Gassmoeller Date: Mon, 24 Jul 2017 16:17:15 -0600 Subject: [PATCH] Fix some minor bugs --- include/deal.II/base/data_out_base.h | 16 ++++++++-------- source/base/data_out_base.inst.in | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/include/deal.II/base/data_out_base.h b/include/deal.II/base/data_out_base.h index 7f4424663c..4ef9c09ad1 100644 --- a/include/deal.II/base/data_out_base.h +++ b/include/deal.II/base/data_out_base.h @@ -2905,43 +2905,43 @@ private: /** * Whether this entry is valid and contains data to be written. */ - const bool valid; + bool valid; /** * The name of the HDF5 heavy data solution file this entry references. */ - const std::string h5_sol_filename; + std::string h5_sol_filename; /** * The name of the HDF5 mesh file this entry references. */ - const std::string h5_mesh_filename; + std::string h5_mesh_filename; /** * The simulation time associated with this entry. */ - const double entry_time; + double entry_time; /** * The number of data nodes. */ - const unsigned int num_nodes; + unsigned int num_nodes; /** * The number of data cells. */ - const unsigned int num_cells; + unsigned int num_cells; /** * The dimension associated with the data. */ - const unsigned int dimension; + unsigned int dimension; /** * The dimension of the space the data lives in. * Note that dimension <= space_dimension. */ - const unsigned int space_dimension; + unsigned int space_dimension; /** * The attributes associated with this entry and their dimension. diff --git a/source/base/data_out_base.inst.in b/source/base/data_out_base.inst.in index 2e9653f29b..42ea249180 100644 --- a/source/base/data_out_base.inst.in +++ b/source/base/data_out_base.inst.in @@ -141,7 +141,7 @@ for (deal_II_dimension : OUTPUT_DIMENSIONS; deal_II_space_dimension : SPACE_DIM #endif } -for (deal_II_dimension : DIMENSIONS; deal_II_space_dimension : SPACE_DIMENSIONS; flag_type : OUTPUT_FLAG_TYPES) +for (deal_II_dimension : OUTPUT_DIMENSIONS; deal_II_space_dimension : SPACE_DIMENSIONS; flag_type : OUTPUT_FLAG_TYPES) { template void -- 2.39.5