Another const in list issue fixed

This commit is contained in:
Sylvain Berfini 2017-09-11 17:17:57 +02:00
parent 20d5ded827
commit 5600ce3a6f

View file

@ -38,7 +38,7 @@ public:
virtual int getNbParticipants () const = 0;
virtual std::list<std::shared_ptr<Participant>> getParticipants () const = 0;
virtual void removeParticipant (const std::shared_ptr<Participant> participant) = 0;
virtual void removeParticipants (const std::list<const std::shared_ptr<Participant>> participants) = 0;
virtual void removeParticipants (const std::list<std::shared_ptr<Participant>> participants) = 0;
};
LINPHONE_END_NAMESPACE