aboutsummaryrefslogtreecommitdiff
path: root/odb/sqlite/connection-factory.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2011-08-30 09:14:11 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2011-08-30 09:14:11 +0200
commit8568cd25d943636e33ec00a935ad8a67d4876e14 (patch)
treea15e5463a33e89ea224dc1494f71d604b2770aaf /odb/sqlite/connection-factory.hxx
parent282cdfe67cc9f9763868abf9aeb0d97e52c06d63 (diff)
Add default value for extra_flags argument
Diffstat (limited to 'odb/sqlite/connection-factory.hxx')
-rw-r--r--odb/sqlite/connection-factory.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/odb/sqlite/connection-factory.hxx b/odb/sqlite/connection-factory.hxx
index 04f91bf..94cd227 100644
--- a/odb/sqlite/connection-factory.hxx
+++ b/odb/sqlite/connection-factory.hxx
@@ -65,7 +65,7 @@ namespace odb
class single_connection: public connection
{
public:
- single_connection (database_type&, int extra_flags);
+ single_connection (database_type&, int extra_flags = 0);
single_connection (database_type&, sqlite3*);
private:
@@ -179,7 +179,7 @@ namespace odb
class pooled_connection: public connection
{
public:
- pooled_connection (database_type&, int extra_flags);
+ pooled_connection (database_type&, int extra_flags = 0);
pooled_connection (database_type&, sqlite3*);
private: