fix uninitialized member in ctor

This commit is contained in:
Guenter Obiltschnig 2016-09-26 18:12:56 +02:00
parent 22a5def393
commit 075cfeb4cb

View File

@ -350,14 +350,16 @@ private:
Template::Template(const Path& templatePath)
: _parts(NULL)
: _parts(0)
, _currentPart(0)
, _templatePath(templatePath)
{
}
Template::Template()
: _parts(NULL)
: _parts(0)
, _currentPart(0)
{
}