diff options
Diffstat (limited to 'libodbcpp/odbc-dsn.h')
-rw-r--r-- | libodbcpp/odbc-dsn.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libodbcpp/odbc-dsn.h b/libodbcpp/odbc-dsn.h index 6be7e3b..4568cb6 100644 --- a/libodbcpp/odbc-dsn.h +++ b/libodbcpp/odbc-dsn.h @@ -6,8 +6,8 @@ namespace ODBC { class DSN { public: - DSN(const std::string &, const std::string &, const std::string &); - virtual ~DSN(); + DSN(std::string, std::string, std::string); + virtual ~DSN() = default; const std::string dsn; // DSN name for odbc.ini const std::string username; // User name const std::string password; // Password |