mirror of https://github.com/Icinga/icinga2.git
Fix compiler warning
This commit is contained in:
parent
cb6f1043e1
commit
2cd5f3516d
|
@ -39,7 +39,7 @@ std::vector<String> ConfigCompiler::m_IncludeSearchDirs;
|
|||
* @param zone The zone.
|
||||
*/
|
||||
ConfigCompiler::ConfigCompiler(const String& path, std::istream *input, const String& zone)
|
||||
: m_Path(path), m_Input(input), m_Zone(zone), m_Eof(false), m_IgnoreNewlines(0), m_OpenBraces(0)
|
||||
: m_Path(path), m_Input(input), m_Zone(zone), m_Eof(false), m_OpenBraces(0), m_IgnoreNewlines(0)
|
||||
{
|
||||
InitializeScanner();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue