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
0d390a06
Commit
0d390a06
authored
Jan 21, 2016
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #414 from ufownl/topic/fix_compilation_error
Fix compilation error on gcc4.8
parents
c2c8fd76
0dc76b77
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
libcaf_core/src/local_actor.cpp
libcaf_core/src/local_actor.cpp
+1
-1
No files found.
libcaf_core/src/local_actor.cpp
View file @
0d390a06
...
...
@@ -339,7 +339,7 @@ bool handle_message_id_res(local_actor* self, message& res,
&&
res
.
get_as
<
atom_value
>
(
0
)
==
atom
(
"MESSAGE_ID"
))
{
CAF_LOG_DEBUG
(
"message handler returned a message id wrapper"
);
auto
msg_id
=
message_id
::
from_integer_value
(
res
.
get_as
<
uint64_t
>
(
1
));
auto
fun
=
[
=
](
maybe
<
local_actor
::
pending_response
&>
ref_opt
)
{
auto
fun
=
[
=
](
maybe
<
local_actor
::
pending_response
&>
ref_opt
)
mutable
{
// install a behavior that calls the user-defined behavior
// and using the result of its inner behavior as response
if
(
ref_opt
)
{
...
...
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