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
eea1551b
Commit
eea1551b
authored
Apr 12, 2017
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing types in composable and typed actors
parent
bad7e939
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
libcaf_core/caf/composable_behavior.hpp
libcaf_core/caf/composable_behavior.hpp
+2
-0
libcaf_core/caf/typed_event_based_actor.hpp
libcaf_core/caf/typed_event_based_actor.hpp
+2
-0
No files found.
libcaf_core/caf/composable_behavior.hpp
View file @
eea1551b
...
@@ -77,6 +77,8 @@ public:
...
@@ -77,6 +77,8 @@ public:
using
actor_base
=
typename
handle_type
::
base
;
using
actor_base
=
typename
handle_type
::
base
;
using
broker_base
=
typename
handle_type
::
broker_base
;
using
behavior_type
=
typename
handle_type
::
behavior_type
;
using
behavior_type
=
typename
handle_type
::
behavior_type
;
composable_behavior
()
:
self
(
nullptr
)
{
composable_behavior
()
:
self
(
nullptr
)
{
...
...
libcaf_core/caf/typed_event_based_actor.hpp
View file @
eea1551b
...
@@ -62,6 +62,8 @@ public:
...
@@ -62,6 +62,8 @@ public:
using
behavior_type
=
typed_behavior
<
Sigs
...
>
;
using
behavior_type
=
typed_behavior
<
Sigs
...
>
;
using
actor_hdl
=
typed_actor
<
Sigs
...
>
;
std
::
set
<
std
::
string
>
message_types
()
const
override
{
std
::
set
<
std
::
string
>
message_types
()
const
override
{
detail
::
type_list
<
typed_actor
<
Sigs
...
>>
token
;
detail
::
type_list
<
typed_actor
<
Sigs
...
>>
token
;
return
this
->
system
().
message_types
(
token
);
return
this
->
system
().
message_types
(
token
);
...
...
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