initialize all members in default ctor

This commit is contained in:
Guenter Obiltschnig 2016-09-26 17:42:01 +02:00
parent 8935e19bbc
commit 1bb795e7ed

View File

@ -21,7 +21,12 @@ namespace Poco {
namespace Data {
MetaColumn::MetaColumn()
MetaColumn::MetaColumn():
_length(),
_precision(),
_position(),
_type(),
_nullable()
{
}