Skip to content

Commit

Permalink
Add missing initializers for the ConfigItemBuilder class
Browse files Browse the repository at this point in the history
refs #12575
  • Loading branch information
gunnarbeutner committed Aug 28, 2016
1 parent e5af5b5 commit 2ce8a4d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/config/configitembuilder.cpp
Expand Up @@ -25,7 +25,7 @@
using namespace icinga;

ConfigItemBuilder::ConfigItemBuilder(void)
: m_Abstract(false)
: m_Abstract(false), m_DefaultTmpl(false), m_IgnoreOnError(false)
{
m_DebugInfo.FirstLine = 0;
m_DebugInfo.FirstColumn = 0;
Expand All @@ -34,7 +34,7 @@ ConfigItemBuilder::ConfigItemBuilder(void)
}

ConfigItemBuilder::ConfigItemBuilder(const DebugInfo& debugInfo)
: m_Abstract(false)
: m_Abstract(false), m_DefaultTmpl(false), m_IgnoreOnError(false)
{
m_DebugInfo = debugInfo;
}
Expand Down

0 comments on commit 2ce8a4d

Please sign in to comment.