mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-30 13:47:10 +01:00
initialize all members in ctor
This commit is contained in:
@@ -47,7 +47,10 @@ SQLChannel::SQLChannel():
|
|||||||
_table("T_POCO_LOG"),
|
_table("T_POCO_LOG"),
|
||||||
_timeout(1000),
|
_timeout(1000),
|
||||||
_throw(true),
|
_throw(true),
|
||||||
_async(true)
|
_async(true),
|
||||||
|
_pid(),
|
||||||
|
_tid(),
|
||||||
|
_priority()
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -61,7 +64,10 @@ SQLChannel::SQLChannel(const std::string& connector,
|
|||||||
_table("T_POCO_LOG"),
|
_table("T_POCO_LOG"),
|
||||||
_timeout(1000),
|
_timeout(1000),
|
||||||
_throw(true),
|
_throw(true),
|
||||||
_async(true)
|
_async(true),
|
||||||
|
_pid(),
|
||||||
|
_tid(),
|
||||||
|
_priority()
|
||||||
{
|
{
|
||||||
open();
|
open();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user