Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
biboumi
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
88
Issues
88
List
Boards
Labels
Service Desk
Milestones
Merge Requests
7
Merge Requests
7
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
louiz’
biboumi
Commits
06438fe8
Commit
06438fe8
authored
Mar 12, 2018
by
louiz’
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove an unused function
parent
8fa050ab
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
7 deletions
+0
-7
src/irc/irc_channel.cpp
src/irc/irc_channel.cpp
+0
-6
src/irc/irc_channel.hpp
src/irc/irc_channel.hpp
+0
-1
No files found.
src/irc/irc_channel.cpp
View file @
06438fe8
...
...
@@ -53,11 +53,5 @@ std::unique_ptr<IrcUser> IrcChannel::remove_user(const IrcUser* user)
this
->
joined
=
false
;
}
}
}
void
IrcChannel
::
remove_all_users
()
{
this
->
users
.
clear
();
this
->
self
=
nullptr
;
return
result
;
}
src/irc/irc_channel.hpp
View file @
06438fe8
...
...
@@ -32,7 +32,6 @@ public:
IrcUser
*
add_user
(
const
std
::
string
&
name
,
const
std
::
map
<
char
,
char
>&
prefix_to_mode
);
IrcUser
*
find_user
(
const
std
::
string
&
name
)
const
;
void
remove_all_users
();
std
::
unique_ptr
<
IrcUser
>
remove_user
(
const
IrcUser
*
user
);
const
std
::
vector
<
std
::
unique_ptr
<
IrcUser
>>&
get_users
()
const
{
return
this
->
users
;
}
...
...
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