diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2012-07-16 08:50:22 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2012-07-16 08:50:22 +0200 |
commit | 2978bf00f72bcf734ffb910b90417e29763624d1 (patch) | |
tree | cd0cbcef43020fa02e17f82e5a15629f1944fce4 | |
parent | 6d012073a48ca7044eea6835bed02220b28fc48c (diff) |
Fix constructor call ambiguity in odb::pgsql::database
-rw-r--r-- | odb/pgsql/database.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/odb/pgsql/database.hxx b/odb/pgsql/database.hxx index c8789ac..64bd792 100644 --- a/odb/pgsql/database.hxx +++ b/odb/pgsql/database.hxx @@ -44,8 +44,8 @@ namespace odb database (const std::string& user, const std::string& password, const std::string& db, - const std::string& host = "", - const std::string& socket_ext = "", + const std::string& host, + const std::string& socket_ext, const std::string& extra_conninfo = "", details::transfer_ptr<connection_factory> = details::transfer_ptr<connection_factory> ()); |