Fixed build

This commit is contained in:
Sylvain Berfini 2017-09-11 17:06:00 +02:00
parent d88a87d6fc
commit 20d5ded827
2 changed files with 2 additions and 2 deletions

View file

@ -132,7 +132,7 @@ void Conference::removeParticipant (const shared_ptr<Participant> participant) {
// TODO
}
void Conference::removeParticipants (const list<const shared_ptr<Participant>> participants) {
void Conference::removeParticipants (const list<shared_ptr<Participant>> participants) {
// TODO
}

View file

@ -51,7 +51,7 @@ public:
virtual int getNbParticipants () const;
virtual std::list<std::shared_ptr<Participant>> getParticipants () const;
virtual void removeParticipant (const std::shared_ptr<Participant> participant);
virtual void removeParticipants (const std::list<const std::shared_ptr<Participant>> participants);
virtual void removeParticipants (const std::list<std::shared_ptr<Participant>> participants);
protected:
explicit Conference (ConferencePrivate &p, LinphoneCore *core, const Address &myAddress, CallListener *listener = nullptr);