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
ff5129bb
Commit
ff5129bb
authored
Jun 10, 2020
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1109
parents
e3f7e64c
3add0907
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
libcaf_core/caf/detail/type_traits.hpp
libcaf_core/caf/detail/type_traits.hpp
+2
-1
libcaf_core/caf/fwd.hpp
libcaf_core/caf/fwd.hpp
+2
-2
No files found.
libcaf_core/caf/detail/type_traits.hpp
View file @
ff5129bb
...
@@ -711,7 +711,8 @@ template <class T, class Arg>
...
@@ -711,7 +711,8 @@ template <class T, class Arg>
struct
can_apply
{
struct
can_apply
{
template
<
class
U
>
template
<
class
U
>
static
auto
sfinae
(
U
*
x
)
static
auto
sfinae
(
U
*
x
)
->
decltype
(
x
->
apply
(
std
::
declval
<
Arg
>
()),
std
::
true_type
{});
->
decltype
(
CAF_IGNORE_UNUSED
(
x
->
apply
(
std
::
declval
<
Arg
>
())),
std
::
true_type
{});
template
<
class
U
>
template
<
class
U
>
static
auto
sfinae
(...)
->
std
::
false_type
;
static
auto
sfinae
(...)
->
std
::
false_type
;
...
...
libcaf_core/caf/fwd.hpp
View file @
ff5129bb
...
@@ -33,7 +33,7 @@ namespace caf {
...
@@ -33,7 +33,7 @@ namespace caf {
template
<
class
>
class
behavior_type_of
;
template
<
class
>
class
behavior_type_of
;
template
<
class
>
class
dictionary
;
template
<
class
>
class
dictionary
;
template
<
class
>
class
downstream
;
template
<
class
>
class
downstream
;
template
<
class
>
class
error_code
;
template
<
class
>
class
[[
nodiscard
]]
error_code
;
template
<
class
>
class
expected
;
template
<
class
>
class
expected
;
template
<
class
>
class
intrusive_cow_ptr
;
template
<
class
>
class
intrusive_cow_ptr
;
template
<
class
>
class
intrusive_ptr
;
template
<
class
>
class
intrusive_ptr
;
...
@@ -106,7 +106,7 @@ class config_value;
...
@@ -106,7 +106,7 @@ class config_value;
class
deserializer
;
class
deserializer
;
class
downstream_manager
;
class
downstream_manager
;
class
downstream_manager_base
;
class
downstream_manager_base
;
class
error
;
class
[[
nodiscard
]]
error
;
class
event_based_actor
;
class
event_based_actor
;
class
execution_unit
;
class
execution_unit
;
class
forwarding_actor_proxy
;
class
forwarding_actor_proxy
;
...
...
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