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
da145b07
Commit
da145b07
authored
Aug 16, 2019
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix formatting
parent
0fc7c3a5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
libcaf_core/caf/binary_deserializer.hpp
libcaf_core/caf/binary_deserializer.hpp
+1
-1
libcaf_core/caf/fwd.hpp
libcaf_core/caf/fwd.hpp
+4
-0
No files found.
libcaf_core/caf/binary_deserializer.hpp
View file @
da145b07
...
...
@@ -78,7 +78,7 @@ public:
const
char
*
end
()
const
CAF_DEPRECATED_MSG
(
"use remaining() instead"
);
/// Returns how many bytes are still available to read.
size_t
remaining
()
const
noexcept
{
size_t
remaining
()
const
noexcept
{
return
static_cast
<
size_t
>
(
end_
-
current_
);
}
...
...
libcaf_core/caf/fwd.hpp
View file @
da145b07
...
...
@@ -30,6 +30,8 @@
namespace
caf
{
// clang-format off
// -- 1 param templates --------------------------------------------------------
template
<
class
>
class
behavior_type_of
;
...
...
@@ -74,6 +76,8 @@ template <class...> class typed_response_promise;
//
template
<
class
,
class
...>
class
output_stream
;
// clang-format on
// -- classes ------------------------------------------------------------------
class
abstract_actor
;
...
...
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