mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-23 16:48:06 +02:00
fix uninitialized member in ctor
This commit is contained in:
@@ -350,14 +350,16 @@ private:
|
|||||||
|
|
||||||
|
|
||||||
Template::Template(const Path& templatePath)
|
Template::Template(const Path& templatePath)
|
||||||
: _parts(NULL)
|
: _parts(0)
|
||||||
|
, _currentPart(0)
|
||||||
, _templatePath(templatePath)
|
, _templatePath(templatePath)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
Template::Template()
|
Template::Template()
|
||||||
: _parts(NULL)
|
: _parts(0)
|
||||||
|
, _currentPart(0)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user