fix(DbSessionPrivate): fix undetermined value of backend type if soci is not enabled

This commit is contained in:
Ronan Abhamon 2018-02-01 11:26:24 +01:00
parent f7a0a8d931
commit 0f6cf5085b

View file

@ -35,7 +35,7 @@ private:
None,
Mysql,
Sqlite3
} backend;
} backend = Backend::None;
#ifdef SOCI_ENABLED
std::unique_ptr<soci::session> backendSession;