fix(AbstractDb): please use :'(

This commit is contained in:
Ronan Abhamon 2017-10-26 16:55:32 +02:00
parent 946a657c24
commit cb28cd4ccd
2 changed files with 2 additions and 2 deletions

View file

@ -31,7 +31,7 @@ using namespace std;
LINPHONE_BEGIN_NAMESPACE
AbstractDb::AbstractDb (AbstractDbPrivate &p) : Object(*new AbstractDbPrivate) {}
AbstractDb::AbstractDb (AbstractDbPrivate &p) : Object(p) {}
bool AbstractDb::connect (Backend backend, const string &parameters) {
L_D();

View file

@ -108,7 +108,7 @@ private:
long long insertConferenceParticipantDeviceEvent (const std::shared_ptr<EventLog> &eventLog);
long long insertConferenceSubjectEvent (const std::shared_ptr<EventLog> &eventLog);
Core *core;
Core *core = nullptr;
L_DECLARE_PUBLIC(MainDb);
};