From 34dbe9a83763d36d40b7281fca113cd60e6e67c5 Mon Sep 17 00:00:00 2001 From: Krishna Kumar Date: Mon, 25 May 2020 11:26:25 -0500 Subject: [PATCH] :wrench: Fix CPP check error in boundary values temp boundary --- include/boundaryvalues.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/boundaryvalues.h b/include/boundaryvalues.h index 44579f3..ea0877a 100644 --- a/include/boundaryvalues.h +++ b/include/boundaryvalues.h @@ -25,8 +25,8 @@ class PressureDirichletBoundaryValues : public Function { virtual void set_boundary_id(int bnd_id) { boundary_id = bnd_id; } private: - const double period{0.}; // value - int boundary_id{0}; + const double period; // value + int boundary_id{-1}; }; template @@ -61,7 +61,7 @@ class TemperatureDirichletBoundaryValues : public Function { private: const double period; // value - int boundary_id; + int boundary_id{-1}; }; template