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
30af059b
Commit
30af059b
authored
Apr 19, 2016
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #455 from ufownl/topic/actor-system
Fix compilation errors when enabling trace log level
parents
08f76548
8f999b51
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
2 deletions
+0
-2
libcaf_core/src/group_manager.cpp
libcaf_core/src/group_manager.cpp
+0
-2
No files found.
libcaf_core/src/group_manager.cpp
View file @
30af059b
...
@@ -166,7 +166,6 @@ public:
...
@@ -166,7 +166,6 @@ public:
// instead of dropping "unexpected" messages,
// instead of dropping "unexpected" messages,
// we simply forward them to our acquaintances
// we simply forward them to our acquaintances
auto
fwd
=
[
=
](
local_actor
*
,
const
type_erased_tuple
*
ptr
)
->
result
<
message
>
{
auto
fwd
=
[
=
](
local_actor
*
,
const
type_erased_tuple
*
ptr
)
->
result
<
message
>
{
CAF_LOG_TRACE
(
CAF_ARG
(
msg
));
send_to_acquaintances
(
message
::
from
(
ptr
));
send_to_acquaintances
(
message
::
from
(
ptr
));
return
message
{};
return
message
{};
};
};
...
@@ -326,7 +325,6 @@ behavior proxy_broker::make_behavior() {
...
@@ -326,7 +325,6 @@ behavior proxy_broker::make_behavior() {
// instead of dropping "unexpected" messages,
// instead of dropping "unexpected" messages,
// we simply forward them to our acquaintances
// we simply forward them to our acquaintances
auto
fwd
=
[
=
](
local_actor
*
,
const
type_erased_tuple
*
x
)
->
result
<
message
>
{
auto
fwd
=
[
=
](
local_actor
*
,
const
type_erased_tuple
*
x
)
->
result
<
message
>
{
CAF_LOG_TRACE
(
CAF_ARG
(
msg
));
group_
->
send_all_subscribers
(
current_element_
->
sender
,
message
::
from
(
x
),
group_
->
send_all_subscribers
(
current_element_
->
sender
,
message
::
from
(
x
),
context
());
context
());
return
message
{};
return
message
{};
...
...
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