mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-18 03:28:07 +00:00
fix compilation issue with old g++
This commit is contained in:
parent
e9980c6ca7
commit
7e52892bf5
1 changed files with 1 additions and 1 deletions
|
|
@ -399,7 +399,7 @@ void LocalConference::addLocalEndpoint() {
|
|||
|
||||
int LocalConference::inviteAddresses(const std::list<const LinphoneAddress*> &addresses, const LinphoneCallParams *params){
|
||||
|
||||
for (auto it = addresses.begin(); it != addresses.end(); ++it){
|
||||
for (std::list<const LinphoneAddress*>::const_iterator it = addresses.begin(); it != addresses.end(); ++it){
|
||||
const LinphoneAddress *addr = *it;
|
||||
LinphoneCall * call = linphone_core_get_call_by_remote_address2(m_core, addr);
|
||||
if (!call){
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue