diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2012-09-06 11:28:29 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2012-09-06 11:28:29 +0200 |
commit | 2d725c335afc7f051e3f461f498b6f1bdbdc5a4d (patch) | |
tree | f08e6d77253cb10141be7f90c02ccbcc91e7f9f3 | |
parent | 4de11c212a7b10b53a73356dce8df61b40d433df (diff) |
Remove default value from argument to make database constructors unambiguous
-rw-r--r-- | odb/oracle/database.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/odb/oracle/database.hxx b/odb/oracle/database.hxx index 65d29c6..b92f00d 100644 --- a/odb/oracle/database.hxx +++ b/odb/oracle/database.hxx @@ -46,7 +46,7 @@ namespace odb database (const std::string& user, const std::string& password, const std::string& service, - const std::string& host = "", + const std::string& host, unsigned int port = 0, ub2 charset = 0, ub2 ncharset = 0, |