Remove unused ctor arguments

This commit is contained in:
Vinnie Falco
2013-06-27 07:57:14 -07:00
parent cb900169d1
commit 662119dd55
5 changed files with 18 additions and 15 deletions

View File

@@ -35,7 +35,10 @@ SqliteStatement::~SqliteStatement ()
sqlite3_finalize (statement);
}
SqliteDatabase::SqliteDatabase (const char* host) : Database (host, "", ""), mWalQ (NULL), walRunning (false)
SqliteDatabase::SqliteDatabase (const char* host)
: Database (host)
, mWalQ (NULL)
, walRunning (false)
{
mConnection = NULL;
mAuxConnection = NULL;