mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-18 11:38:08 +00:00
mark const method as const
This commit is contained in:
parent
783e9326d2
commit
ff02fcd274
2 changed files with 2 additions and 2 deletions
|
|
@ -61,7 +61,7 @@ void RemoteConference::removeParticipant (const shared_ptr<const Participant> &p
|
|||
}
|
||||
|
||||
|
||||
string RemoteConference::getResourceLists (const list<Address> &addresses) {
|
||||
string RemoteConference::getResourceLists (const list<Address> &addresses) const {
|
||||
ResourceLists rl = ResourceLists();
|
||||
ListType l = ListType();
|
||||
for (const auto &addr : addresses) {
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@ public:
|
|||
void addParticipant (const Address &addr, const CallSessionParams *params, bool hasMedia) override;
|
||||
void removeParticipant (const std::shared_ptr<const Participant> &participant) override;
|
||||
|
||||
std::string getResourceLists (const std::list<Address> &addresses);
|
||||
std::string getResourceLists (const std::list<Address> &addresses) const;
|
||||
|
||||
protected:
|
||||
/* ConferenceListener */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue