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
ddbdc9c3
Commit
ddbdc9c3
authored
Jan 17, 2019
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix overload resolution for get_or
parent
4cd321b1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
12 deletions
+6
-12
libcaf_core/caf/actor_system_config.hpp
libcaf_core/caf/actor_system_config.hpp
+6
-12
No files found.
libcaf_core/caf/actor_system_config.hpp
View file @
ddbdc9c3
...
@@ -361,18 +361,12 @@ T get(const actor_system_config& cfg, string_view name) {
...
@@ -361,18 +361,12 @@ T get(const actor_system_config& cfg, string_view name) {
/// Retrieves the value associated to `name` from `cfg` or returns
/// Retrieves the value associated to `name` from `cfg` or returns
/// `default_value`.
/// `default_value`.
/// @relates config_value
/// @relates config_value
template
<
class
T
,
class
E
=
detail
::
enable_if_t
<!
std
::
is_pointer
<
T
>
::
value
>>
template
<
class
K
,
class
V
>
T
get_or
(
const
actor_system_config
&
cfg
,
string_view
name
,
auto
get_or
(
const
actor_system_config
&
cfg
,
K
&&
name
,
V
&&
default_value
)
const
T
&
default_value
)
{
->
decltype
(
get_or
(
content
(
cfg
),
std
::
forward
<
K
>
(
name
),
return
get_or
(
content
(
cfg
),
name
,
default_value
);
std
::
forward
<
V
>
(
default_value
)))
{
}
return
get_or
(
content
(
cfg
),
std
::
forward
<
K
>
(
name
),
std
::
forward
<
V
>
(
default_value
));
/// Retrieves the value associated to `name` from `cfg` or returns
/// `default_value`.
/// @relates config_value
inline
std
::
string
get_or
(
const
actor_system_config
&
cfg
,
string_view
name
,
string_view
default_value
)
{
return
get_or
(
content
(
cfg
),
name
,
default_value
);
}
}
}
// namespace caf
}
// namespace caf
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