mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-23 22:28:07 +00:00
feat(core): remove useless doc on (void)arg
This commit is contained in:
parent
bc32805af0
commit
0118f6ee53
2 changed files with 14 additions and 14 deletions
|
|
@ -307,7 +307,7 @@ void ClientGroupChatRoom::onParticipantAdded (const shared_ptr<ConferencePartici
|
|||
}
|
||||
|
||||
void ClientGroupChatRoom::onParticipantRemoved (const shared_ptr<ConferenceParticipantEvent> &event, bool isFullState) {
|
||||
(void)isFullState; // unused
|
||||
(void)isFullState;
|
||||
|
||||
L_D_T(RemoteConference, dConference);
|
||||
|
||||
|
|
@ -401,7 +401,7 @@ void ClientGroupChatRoom::onParticipantDeviceAdded (const shared_ptr<ConferenceP
|
|||
}
|
||||
|
||||
void ClientGroupChatRoom::onParticipantDeviceRemoved (const shared_ptr<ConferenceParticipantDeviceEvent> &event, bool isFullState) {
|
||||
(void)isFullState; // unused
|
||||
(void)isFullState;
|
||||
|
||||
const Address &addr = event->getParticipantAddress();
|
||||
shared_ptr<Participant> participant;
|
||||
|
|
|
|||
|
|
@ -92,33 +92,33 @@ void RemoteConference::onConferenceTerminated (const Address &addr) {
|
|||
void RemoteConference::onFirstNotifyReceived (const Address &addr) {}
|
||||
|
||||
void RemoteConference::onParticipantAdded (const std::shared_ptr<ConferenceParticipantEvent> &event, bool isFullState) {
|
||||
(void)event; // unused
|
||||
(void)isFullState; // unused
|
||||
(void)event;
|
||||
(void)isFullState;
|
||||
}
|
||||
|
||||
void RemoteConference::onParticipantRemoved (const std::shared_ptr<ConferenceParticipantEvent> &event, bool isFullState) {
|
||||
(void)event; // unused
|
||||
(void)isFullState; // unused
|
||||
(void)event;
|
||||
(void)isFullState;
|
||||
}
|
||||
|
||||
void RemoteConference::onParticipantSetAdmin (const std::shared_ptr<ConferenceParticipantEvent> &event, bool isFullState) {
|
||||
(void)event; // unused
|
||||
(void)isFullState; // unused
|
||||
(void)event;
|
||||
(void)isFullState;
|
||||
}
|
||||
|
||||
void RemoteConference::onSubjectChanged (const std::shared_ptr<ConferenceSubjectEvent> &event, bool isFullState) {
|
||||
(void)event; // unused
|
||||
(void)isFullState; // unused
|
||||
(void)event;
|
||||
(void)isFullState;
|
||||
}
|
||||
|
||||
void RemoteConference::onParticipantDeviceAdded (const std::shared_ptr<ConferenceParticipantDeviceEvent> &event, bool isFullState) {
|
||||
(void)event; // unused
|
||||
(void)isFullState; // unused
|
||||
(void)event;
|
||||
(void)isFullState;
|
||||
}
|
||||
|
||||
void RemoteConference::onParticipantDeviceRemoved (const std::shared_ptr<ConferenceParticipantDeviceEvent> &event, bool isFullState) {
|
||||
(void)event; // unused
|
||||
(void)isFullState; // unused
|
||||
(void)event;
|
||||
(void)isFullState;
|
||||
}
|
||||
|
||||
LINPHONE_END_NAMESPACE
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue