Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
liblinphone
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
10
Issues
10
List
Board
Labels
Milestones
Merge Requests
21
Merge Requests
21
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
External Wiki
External Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
BC
public
liblinphone
Commits
0118f6ee
Commit
0118f6ee
authored
Nov 08, 2017
by
Ronan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(core): remove useless doc on (void)arg
parent
bc32805a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
14 deletions
+14
-14
client-group-chat-room.cpp
src/chat/chat-room/client-group-chat-room.cpp
+2
-2
remote-conference.cpp
src/conference/remote-conference.cpp
+12
-12
No files found.
src/chat/chat-room/client-group-chat-room.cpp
View file @
0118f6ee
...
@@ -307,7 +307,7 @@ void ClientGroupChatRoom::onParticipantAdded (const shared_ptr<ConferencePartici
...
@@ -307,7 +307,7 @@ void ClientGroupChatRoom::onParticipantAdded (const shared_ptr<ConferencePartici
}
}
void
ClientGroupChatRoom
::
onParticipantRemoved
(
const
shared_ptr
<
ConferenceParticipantEvent
>
&
event
,
bool
isFullState
)
{
void
ClientGroupChatRoom
::
onParticipantRemoved
(
const
shared_ptr
<
ConferenceParticipantEvent
>
&
event
,
bool
isFullState
)
{
(
void
)
isFullState
;
// unused
(
void
)
isFullState
;
L_D_T
(
RemoteConference
,
dConference
);
L_D_T
(
RemoteConference
,
dConference
);
...
@@ -401,7 +401,7 @@ void ClientGroupChatRoom::onParticipantDeviceAdded (const shared_ptr<ConferenceP
...
@@ -401,7 +401,7 @@ void ClientGroupChatRoom::onParticipantDeviceAdded (const shared_ptr<ConferenceP
}
}
void
ClientGroupChatRoom
::
onParticipantDeviceRemoved
(
const
shared_ptr
<
ConferenceParticipantDeviceEvent
>
&
event
,
bool
isFullState
)
{
void
ClientGroupChatRoom
::
onParticipantDeviceRemoved
(
const
shared_ptr
<
ConferenceParticipantDeviceEvent
>
&
event
,
bool
isFullState
)
{
(
void
)
isFullState
;
// unused
(
void
)
isFullState
;
const
Address
&
addr
=
event
->
getParticipantAddress
();
const
Address
&
addr
=
event
->
getParticipantAddress
();
shared_ptr
<
Participant
>
participant
;
shared_ptr
<
Participant
>
participant
;
...
...
src/conference/remote-conference.cpp
View file @
0118f6ee
...
@@ -92,33 +92,33 @@ void RemoteConference::onConferenceTerminated (const Address &addr) {
...
@@ -92,33 +92,33 @@ void RemoteConference::onConferenceTerminated (const Address &addr) {
void
RemoteConference
::
onFirstNotifyReceived
(
const
Address
&
addr
)
{}
void
RemoteConference
::
onFirstNotifyReceived
(
const
Address
&
addr
)
{}
void
RemoteConference
::
onParticipantAdded
(
const
std
::
shared_ptr
<
ConferenceParticipantEvent
>
&
event
,
bool
isFullState
)
{
void
RemoteConference
::
onParticipantAdded
(
const
std
::
shared_ptr
<
ConferenceParticipantEvent
>
&
event
,
bool
isFullState
)
{
(
void
)
event
;
// unused
(
void
)
event
;
(
void
)
isFullState
;
// unused
(
void
)
isFullState
;
}
}
void
RemoteConference
::
onParticipantRemoved
(
const
std
::
shared_ptr
<
ConferenceParticipantEvent
>
&
event
,
bool
isFullState
)
{
void
RemoteConference
::
onParticipantRemoved
(
const
std
::
shared_ptr
<
ConferenceParticipantEvent
>
&
event
,
bool
isFullState
)
{
(
void
)
event
;
// unused
(
void
)
event
;
(
void
)
isFullState
;
// unused
(
void
)
isFullState
;
}
}
void
RemoteConference
::
onParticipantSetAdmin
(
const
std
::
shared_ptr
<
ConferenceParticipantEvent
>
&
event
,
bool
isFullState
)
{
void
RemoteConference
::
onParticipantSetAdmin
(
const
std
::
shared_ptr
<
ConferenceParticipantEvent
>
&
event
,
bool
isFullState
)
{
(
void
)
event
;
// unused
(
void
)
event
;
(
void
)
isFullState
;
// unused
(
void
)
isFullState
;
}
}
void
RemoteConference
::
onSubjectChanged
(
const
std
::
shared_ptr
<
ConferenceSubjectEvent
>
&
event
,
bool
isFullState
)
{
void
RemoteConference
::
onSubjectChanged
(
const
std
::
shared_ptr
<
ConferenceSubjectEvent
>
&
event
,
bool
isFullState
)
{
(
void
)
event
;
// unused
(
void
)
event
;
(
void
)
isFullState
;
// unused
(
void
)
isFullState
;
}
}
void
RemoteConference
::
onParticipantDeviceAdded
(
const
std
::
shared_ptr
<
ConferenceParticipantDeviceEvent
>
&
event
,
bool
isFullState
)
{
void
RemoteConference
::
onParticipantDeviceAdded
(
const
std
::
shared_ptr
<
ConferenceParticipantDeviceEvent
>
&
event
,
bool
isFullState
)
{
(
void
)
event
;
// unused
(
void
)
event
;
(
void
)
isFullState
;
// unused
(
void
)
isFullState
;
}
}
void
RemoteConference
::
onParticipantDeviceRemoved
(
const
std
::
shared_ptr
<
ConferenceParticipantDeviceEvent
>
&
event
,
bool
isFullState
)
{
void
RemoteConference
::
onParticipantDeviceRemoved
(
const
std
::
shared_ptr
<
ConferenceParticipantDeviceEvent
>
&
event
,
bool
isFullState
)
{
(
void
)
event
;
// unused
(
void
)
event
;
(
void
)
isFullState
;
// unused
(
void
)
isFullState
;
}
}
LINPHONE_END_NAMESPACE
LINPHONE_END_NAMESPACE
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment