feat(core): remove useless doc on (void)arg

This commit is contained in:
Ronan Abhamon 2017-11-08 14:11:50 +01:00
parent bc32805af0
commit 0118f6ee53
2 changed files with 14 additions and 14 deletions

View file

@ -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;

View file

@ -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