2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-31 22:15:23 +00:00

[#1845] initialize all members in constructors

This commit is contained in:
Razvan Becheriu
2021-06-09 12:57:37 +03:00
parent 50f0d8c558
commit 8daf8ebf2b
24 changed files with 141 additions and 38 deletions

View File

@@ -67,9 +67,10 @@ public:
/// @throw isc::db::DbOpenError Error opening the database
/// @throw isc::db::DbOperationError An operation on the open database has
/// failed.
PgSqlHostDataSource(const db::DatabaseConnection::ParameterMap& parameters);
PgSqlHostDataSource(const db::DatabaseConnection::ParameterMap& parameters);
/// @brief Virtual destructor.
///
/// Frees database resources and closes the database connection through
/// the destruction of member impl_.
virtual ~PgSqlHostDataSource();