fix(MainDb): fix compil when soci is not used

This commit is contained in:
Ronan Abhamon 2017-10-24 11:55:08 +02:00
parent 16d229224c
commit 3e54de8d6a

View file

@ -1202,11 +1202,11 @@ shared_ptr<ChatRoom> MainDb::findChatRoom (const string &peerAddress) const {
void MainDb::init () {}
bool MainDb::addEvent (const EventLog &) {
bool MainDb::addEvent (const shared_ptr<EventLog> &) {
return false;
}
bool MainDb::deleteEvent (const EventLog &) {
bool MainDb::deleteEvent (const shared_ptr<EventLog> &) {
return false;
}