mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-23 08:31:43 +02:00
fix uninitialized member in ctor
This commit is contained in:
@@ -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)
|
||||
{
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user