mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-28 19:51:58 +01:00
bugfix: _null member not initialized in ctor
This commit is contained in:
@@ -53,7 +53,8 @@ public:
|
|||||||
AbstractExtraction(Limit::LIMIT_UNLIMITED, pos.value()),
|
AbstractExtraction(Limit::LIMIT_UNLIMITED, pos.value()),
|
||||||
_rResult(result),
|
_rResult(result),
|
||||||
_default(),
|
_default(),
|
||||||
_extracted(false)
|
_extracted(false),
|
||||||
|
_null(false)
|
||||||
/// Creates an Extraction object at specified position.
|
/// Creates an Extraction object at specified position.
|
||||||
/// Uses an empty object T as default value.
|
/// Uses an empty object T as default value.
|
||||||
{
|
{
|
||||||
@@ -63,7 +64,8 @@ public:
|
|||||||
AbstractExtraction(Limit::LIMIT_UNLIMITED, pos.value()),
|
AbstractExtraction(Limit::LIMIT_UNLIMITED, pos.value()),
|
||||||
_rResult(result),
|
_rResult(result),
|
||||||
_default(def),
|
_default(def),
|
||||||
_extracted(false)
|
_extracted(false),
|
||||||
|
_null(false)
|
||||||
/// Creates an Extraction object at specified position.
|
/// Creates an Extraction object at specified position.
|
||||||
/// Uses the provided def object as default value.
|
/// Uses the provided def object as default value.
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user