From 5600ce3a6f78b1dc2d3fc6087f1194e9b882febe Mon Sep 17 00:00:00 2001 From: Sylvain Berfini Date: Mon, 11 Sep 2017 17:17:57 +0200 Subject: [PATCH] Another const in list issue fixed --- src/conference/conference-interface.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/conference/conference-interface.h b/src/conference/conference-interface.h index 016313cf8..181052912 100644 --- a/src/conference/conference-interface.h +++ b/src/conference/conference-interface.h @@ -38,7 +38,7 @@ public: virtual int getNbParticipants () const = 0; virtual std::list> getParticipants () const = 0; virtual void removeParticipant (const std::shared_ptr participant) = 0; - virtual void removeParticipants (const std::list> participants) = 0; + virtual void removeParticipants (const std::list> participants) = 0; }; LINPHONE_END_NAMESPACE