From 26a8e1f0ea16756804c9851185b1da807925f3c5 Mon Sep 17 00:00:00 2001 From: David Wells Date: Fri, 4 Nov 2016 22:24:39 -0400 Subject: [PATCH] Initialize an IntegrationInfo field. This number is correctly filled by IntegrationInfo::initialize, but this way it starts out with a bogus value (instead of an undefined one). --- include/deal.II/meshworker/integration_info.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/deal.II/meshworker/integration_info.h b/include/deal.II/meshworker/integration_info.h index 996a2d496c..0953ba6913 100644 --- a/include/deal.II/meshworker/integration_info.h +++ b/include/deal.II/meshworker/integration_info.h @@ -556,7 +556,8 @@ namespace MeshWorker : fevalv(0), multigrid(false), - global_data(std_cxx11::shared_ptr >(new VectorDataBase)) + global_data(std_cxx11::shared_ptr >(new VectorDataBase)), + n_components(numbers::invalid_unsigned_int) {} -- 2.39.5