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
bf3aa22a
Commit
bf3aa22a
authored
Apr 02, 2020
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing is_serializable specializations
parent
e068ded8
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
libcaf_core/caf/detail/type_traits.hpp
libcaf_core/caf/detail/type_traits.hpp
+11
-0
No files found.
libcaf_core/caf/detail/type_traits.hpp
View file @
bf3aa22a
...
@@ -359,6 +359,17 @@ struct is_serializable_impl<T, false, false> {
...
@@ -359,6 +359,17 @@ struct is_serializable_impl<T, false, false> {
||
is_builtin
<
T
>::
value
;
||
is_builtin
<
T
>::
value
;
};
};
template
<
class
Rep
,
class
Period
>
struct
is_serializable_impl
<
std
::
chrono
::
duration
<
Rep
,
Period
>
,
false
,
false
>
{
static
constexpr
bool
value
=
is_serializable
<
Rep
>::
value
;
};
template
<
class
Clock
,
class
Duration
>
struct
is_serializable_impl
<
std
::
chrono
::
time_point
<
Clock
,
Duration
>
,
false
,
false
>
{
static
constexpr
bool
value
=
is_serializable
<
Duration
>::
value
;
};
template
<
class
F
,
class
S
>
template
<
class
F
,
class
S
>
struct
is_serializable_impl
<
std
::
pair
<
F
,
S
>
,
false
,
false
>
{
struct
is_serializable_impl
<
std
::
pair
<
F
,
S
>
,
false
,
false
>
{
static
constexpr
bool
value
=
is_serializable
<
F
>::
value
static
constexpr
bool
value
=
is_serializable
<
F
>::
value
...
...
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