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
3aad1fdf
Commit
3aad1fdf
authored
Apr 16, 2017
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reduce verbosity in actor_system_config.hpp
parent
00be7107
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
6 deletions
+7
-6
libcaf_core/caf/actor_system_config.hpp
libcaf_core/caf/actor_system_config.hpp
+7
-6
No files found.
libcaf_core/caf/actor_system_config.hpp
View file @
3aad1fdf
...
...
@@ -59,17 +59,18 @@ public:
using
value_factory
=
std
::
function
<
type_erased_value_ptr
()
>
;
using
value_factory_string_map
=
std
::
unordered
_map
<
std
::
string
,
value_factory
>
;
using
value_factory_string_map
=
hash
_map
<
std
::
string
,
value_factory
>
;
using
value_factory_rtti_map
=
std
::
unordered
_map
<
std
::
type_index
,
value_factory
>
;
using
value_factory_rtti_map
=
hash
_map
<
std
::
type_index
,
value_factory
>
;
using
actor_factory_map
=
std
::
unordered
_map
<
std
::
string
,
actor_factory
>
;
using
actor_factory_map
=
hash
_map
<
std
::
string
,
actor_factory
>
;
using
portable_name_map
=
std
::
unordered
_map
<
std
::
type_index
,
std
::
string
>
;
using
portable_name_map
=
hash
_map
<
std
::
type_index
,
std
::
string
>
;
using
error_renderer
=
std
::
function
<
std
::
string
(
uint8_t
,
atom_value
,
const
message
&
)
>
;
using
error_renderer
=
std
::
function
<
std
::
string
(
uint8_t
,
atom_value
,
const
message
&
)
>
;
using
error_renderer_map
=
std
::
unordered
_map
<
atom_value
,
error_renderer
>
;
using
error_renderer_map
=
hash
_map
<
atom_value
,
error_renderer
>
;
using
option_ptr
=
std
::
unique_ptr
<
config_option
>
;
...
...
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