Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
Actor Framework
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
Actor Framework
Commits
94c10873
Commit
94c10873
authored
May 31, 2012
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
reformatting
parent
63407ab1
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
7 deletions
+2
-7
cppa/group.hpp
cppa/group.hpp
+1
-2
src/group.cpp
src/group.cpp
+1
-5
No files found.
cppa/group.hpp
View file @
94c10873
...
...
@@ -99,8 +99,7 @@ class group : public channel {
protected:
module
(
std
::
string
&&
module_name
);
module
(
const
std
::
string
&
module_name
);
module
(
std
::
string
module_name
);
public:
...
...
src/group.cpp
View file @
94c10873
...
...
@@ -71,11 +71,7 @@ bool group::unsubscriber::matches(const attachable::token& what) {
return
false
;
}
group
::
module
::
module
(
const
std
::
string
&
name
)
:
m_name
(
name
)
{
}
group
::
module
::
module
(
std
::
string
&&
name
)
:
m_name
(
std
::
move
(
name
))
{
}
group
::
module
::
module
(
std
::
string
name
)
:
m_name
(
std
::
move
(
name
))
{
}
const
std
::
string
&
group
::
module
::
name
()
{
return
m_name
;
...
...
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