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
c40333d8
Commit
c40333d8
authored
Jul 03, 2012
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
maintenance
parent
1eb9f07e
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
7 deletions
+3
-7
cppa/detail/abstract_actor.hpp
cppa/detail/abstract_actor.hpp
+2
-2
cppa/detail/recursive_queue_node.hpp
cppa/detail/recursive_queue_node.hpp
+1
-5
No files found.
cppa/detail/abstract_actor.hpp
View file @
c40333d8
...
...
@@ -191,8 +191,8 @@ class abstract_actor : public Base {
}
template
<
typename
...
Args
>
abstract_actor
(
Args
&&
...
args
)
:
Base
(
std
::
forward
<
Args
>
(
args
)...)
,
m_exit_reason
(
exit_reason
::
not_exited
)
{
abstract_actor
(
Args
&&
...
args
)
:
Base
(
std
::
forward
<
Args
>
(
args
)...),
m_exit_reason
(
exit_reason
::
not_exited
)
{
// pre-allocate some nodes
for
(
size_t
i
=
0
;
i
<
m_nodes
.
max_size
()
/
2
;
++
i
)
{
m_nodes
.
push_back
(
new
mailbox_element
);
...
...
cppa/detail/recursive_queue_node.hpp
View file @
c40333d8
...
...
@@ -46,11 +46,7 @@ struct recursive_queue_node {
inline
recursive_queue_node
()
:
next
(
nullptr
),
marked
(
false
)
{
}
inline
recursive_queue_node
(
actor
*
from
,
any_tuple
&&
content
)
:
next
(
nullptr
)
,
marked
(
false
)
,
sender
(
from
)
,
msg
(
std
::
move
(
content
))
{
}
:
next
(
nullptr
),
marked
(
false
),
sender
(
from
),
msg
(
std
::
move
(
content
))
{
}
recursive_queue_node
(
recursive_queue_node
&&
)
=
delete
;
recursive_queue_node
(
const
recursive_queue_node
&
)
=
delete
;
...
...
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