diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-07-05 19:34:57 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-07-05 19:34:57 +0100 |
commit | 15d35bb1190ce331ac4808fd38f334b724286800 (patch) | |
tree | 8cd291514c057d139f23fc359f80826d3e515e7c /test | |
parent | Explicit RowView constructor (diff) | |
download | mygrate-15d35bb1190ce331ac4808fd38f334b724286800.tar.bz2 mygrate-15d35bb1190ce331ac4808fd38f334b724286800.tar.xz mygrate-15d35bb1190ce331ac4808fd38f334b724286800.zip |
Explicit PqConnDB test class constructor
Diffstat (limited to 'test')
-rw-r--r-- | test/testdb-postgresql.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testdb-postgresql.h b/test/testdb-postgresql.h index c1cd14a..37b2139 100644 --- a/test/testdb-postgresql.h +++ b/test/testdb-postgresql.h @@ -8,7 +8,7 @@ namespace MyGrate { class PqConnDB : public Output::Pq::PqConn { public: PqConnDB(); - PqConnDB(const std::string & schemaFile); + explicit PqConnDB(const std::string & schemaFile); ~PqConnDB(); Output::Pq::PqConn mock() const; |