From 20d5ded82727c139805c87ffafe20f067e6be647 Mon Sep 17 00:00:00 2001 From: Sylvain Berfini Date: Mon, 11 Sep 2017 17:06:00 +0200 Subject: [PATCH] Fixed build --- src/conference/conference.cpp | 2 +- src/conference/conference.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/conference/conference.cpp b/src/conference/conference.cpp index f6abff333..5175c43fe 100644 --- a/src/conference/conference.cpp +++ b/src/conference/conference.cpp @@ -132,7 +132,7 @@ void Conference::removeParticipant (const shared_ptr participant) { // TODO } -void Conference::removeParticipants (const list> participants) { +void Conference::removeParticipants (const list> participants) { // TODO } diff --git a/src/conference/conference.h b/src/conference/conference.h index 3b1a85920..04d69279e 100644 --- a/src/conference/conference.h +++ b/src/conference/conference.h @@ -51,7 +51,7 @@ public: virtual int getNbParticipants () const; virtual std::list> getParticipants () const; virtual void removeParticipant (const std::shared_ptr participant); - virtual void removeParticipants (const std::list> participants); + virtual void removeParticipants (const std::list> participants); protected: explicit Conference (ConferencePrivate &p, LinphoneCore *core, const Address &myAddress, CallListener *listener = nullptr);