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
2d32e8b4
Commit
2d32e8b4
authored
May 11, 2016
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #460 from ufownl/fix_compilation_errors
Fix compilation errors when enabling log
parents
2d273341
bdb20822
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
libcaf_core/src/local_actor.cpp
libcaf_core/src/local_actor.cpp
+3
-4
No files found.
libcaf_core/src/local_actor.cpp
View file @
2d32e8b4
...
...
@@ -48,10 +48,10 @@ public:
}
void
run
()
{
CAF_SET_LOGGER_SYS
(
&
self_
->
system
());
CAF_PUSH_AID
(
self_
->
id
());
CAF_LOG_TRACE
(
""
);
auto
job
=
const_cast
<
local_actor
*>
(
self_
);
CAF_SET_LOGGER_SYS
(
&
job
->
system
());
CAF_PUSH_AID
(
job
->
id
());
CAF_LOG_TRACE
(
""
);
scoped_execution_unit
ctx
{
&
job
->
system
()};
auto
max_throughput
=
std
::
numeric_limits
<
size_t
>::
max
();
for
(;;)
{
...
...
@@ -408,7 +408,6 @@ private:
void
local_actor
::
handle_response
(
mailbox_element_ptr
&
ptr
,
local_actor
::
pending_response
&
pr
)
{
CAF_ASSERT
(
ptr
!=
nullptr
);
CAF_LOG_TRACE
(
CAF_ARG
(
*
ptr
)
<<
CAF_ARG
(
awaited_id
));
auto
&
ref_fun
=
pr
.
second
;
ptr
.
swap
(
current_element_
);
auto
&
msg
=
current_element_
->
msg
;
...
...
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