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
61881560
Commit
61881560
authored
Nov 30, 2019
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix serialization interfaces
parent
143dace9
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
19 deletions
+1
-19
libcaf_core/caf/deserializer.hpp
libcaf_core/caf/deserializer.hpp
+1
-10
libcaf_core/caf/serializer.hpp
libcaf_core/caf/serializer.hpp
+0
-9
No files found.
libcaf_core/caf/deserializer.hpp
View file @
61881560
...
...
@@ -106,15 +106,6 @@ public:
/// @copydoc apply
virtual
result_type
apply
(
long
double
&
)
=
0
;
/// @copydoc apply
virtual
result_type
apply
(
timespan
x
)
=
0
;
/// @copydoc apply
virtual
result_type
apply
(
timestamp
x
)
=
0
;
/// @copydoc apply
virtual
result_type
apply
(
atom_value
x
)
=
0
;
/// @copydoc apply
virtual
result_type
apply
(
std
::
string
&
)
=
0
;
...
...
@@ -133,7 +124,7 @@ public:
/// Reads a byte sequence from the input.
/// @param x The byte sequence.
/// @returns A non-zero error code on failure, `sec::success` otherwise.
virtual
result_type
apply
_raw
(
span
<
byte
>
x
)
=
0
;
virtual
result_type
apply
(
span
<
byte
>
x
)
=
0
;
/// Adds each boolean in `xs` to the output. Derived classes can override this
/// member function to pack the booleans, for example to avoid using one byte
...
...
libcaf_core/caf/serializer.hpp
View file @
61881560
...
...
@@ -113,15 +113,6 @@ public:
/// @copydoc apply
virtual
result_type
apply
(
long
double
x
)
=
0
;
/// @copydoc apply
virtual
result_type
apply
(
timespan
x
)
=
0
;
/// @copydoc apply
virtual
result_type
apply
(
timestamp
x
)
=
0
;
/// @copydoc apply
virtual
result_type
apply
(
atom_value
x
)
=
0
;
/// @copydoc apply
virtual
result_type
apply
(
string_view
x
)
=
0
;
...
...
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