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
6a08094a
Commit
6a08094a
authored
Nov 14, 2019
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix build on Clang 4
parent
b1c623b5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
libcaf_core/caf/actor_traits.hpp
libcaf_core/caf/actor_traits.hpp
+4
-4
No files found.
libcaf_core/caf/actor_traits.hpp
View file @
6a08094a
...
@@ -76,20 +76,20 @@ template <class T>
...
@@ -76,20 +76,20 @@ template <class T>
struct
default_actor_traits
<
T
,
true
>
{
struct
default_actor_traits
<
T
,
true
>
{
/// Denotes whether `T` is dynamically typed.
/// Denotes whether `T` is dynamically typed.
static
constexpr
bool
is_dynamically_typed
static
constexpr
bool
is_dynamically_typed
=
std
::
is_base_of
_v
<
dynamically_typed_actor_base
,
T
>
;
=
std
::
is_base_of
<
dynamically_typed_actor_base
,
T
>::
value
;
/// Denotes whether `T` is statically typed.
/// Denotes whether `T` is statically typed.
static
constexpr
bool
is_statically_typed
static
constexpr
bool
is_statically_typed
=
std
::
is_base_of
_v
<
statically_typed_actor_base
,
T
>
;
=
std
::
is_base_of
<
statically_typed_actor_base
,
T
>::
value
;
/// Denotes whether `T` is a blocking actor type.
/// Denotes whether `T` is a blocking actor type.
static
constexpr
bool
is_blocking
static
constexpr
bool
is_blocking
=
std
::
is_base_of
_v
<
blocking_actor_base
,
T
>
//
=
std
::
is_base_of
<
blocking_actor_base
,
T
>::
value
||
mixin
::
is_blocking_requester
<
T
>::
value
;
||
mixin
::
is_blocking_requester
<
T
>::
value
;
/// Denotes whether `T` is a non-blocking actor type.
/// Denotes whether `T` is a non-blocking actor type.
static
constexpr
bool
is_non_blocking
static
constexpr
bool
is_non_blocking
=
std
::
is_base_of
_v
<
non_blocking_actor_base
,
T
>
;
=
std
::
is_base_of
<
non_blocking_actor_base
,
T
>::
value
;
/// Denotes whether `T` is an incomplete actor type that misses one or more
/// Denotes whether `T` is an incomplete actor type that misses one or more
/// markers.
/// markers.
...
...
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