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