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
b8bea6dd
Commit
b8bea6dd
authored
Nov 17, 2019
by
Andris Mednis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix spelling: information
parent
ad110ffa
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
6 deletions
+6
-6
doc/tex/CommonPitfalls.tex
doc/tex/CommonPitfalls.tex
+1
-1
libcaf_core/caf/all.hpp
libcaf_core/caf/all.hpp
+3
-3
libcaf_core/caf/parser_state.hpp
libcaf_core/caf/parser_state.hpp
+1
-1
libcaf_core/caf/typed_behavior.hpp
libcaf_core/caf/typed_behavior.hpp
+1
-1
No files found.
doc/tex/CommonPitfalls.tex
View file @
b8bea6dd
...
@@ -60,5 +60,5 @@ behavior that is incredibly hard to find and debug. However, sharing
...
@@ -60,5 +60,5 @@ behavior that is incredibly hard to find and debug. However, sharing
and its lifetime is guaranteed to outlive all actors. The simplest way to meet
and its lifetime is guaranteed to outlive all actors. The simplest way to meet
the lifetime guarantee is by storing the data in smart pointers such as
the lifetime guarantee is by storing the data in smart pointers such as
\lstinline
^
std::shared
_
ptr
^
. Nevertheless, the recommended way of sharing
\lstinline
^
std::shared
_
ptr
^
. Nevertheless, the recommended way of sharing
information
s
is message passing. Sending the same message to multiple actors
information is message passing. Sending the same message to multiple actors
does not result in copying the data several times.
does not result in copying the data several times.
libcaf_core/caf/all.hpp
View file @
b8bea6dd
...
@@ -205,7 +205,7 @@
...
@@ -205,7 +205,7 @@
/// Contains classes and functions used for network abstraction.
/// Contains classes and functions used for network abstraction.
///
///
/// @namespace caf::io::basp
/// @namespace caf::io::basp
/// Contains all classes and functions for the Binary Actor Sytem Protocol.
/// Contains all classes and functions for the Binary Actor Sy
s
tem Protocol.
///
///
/// @defgroup MessageHandling Message Handling
/// @defgroup MessageHandling Message Handling
///
///
...
@@ -289,8 +289,8 @@
...
@@ -289,8 +289,8 @@
///
///
/// @section Atoms Atoms
/// @section Atoms Atoms
///
///
/// Atoms are a nice way to add semantic information
s
to a message.
/// Atoms are a nice way to add semantic information to a message.
/// Assuming an actor wants to provide a "math sevice" for integers. It
/// Assuming an actor wants to provide a "math se
r
vice" for integers. It
/// could provide operations such as addition, subtraction, etc.
/// could provide operations such as addition, subtraction, etc.
/// This operations all have two operands. Thus, the actor does not know
/// This operations all have two operands. Thus, the actor does not know
/// what operation the sender of a message wanted by receiving just two integers.
/// what operation the sender of a message wanted by receiving just two integers.
...
...
libcaf_core/caf/parser_state.hpp
View file @
b8bea6dd
...
@@ -27,7 +27,7 @@
...
@@ -27,7 +27,7 @@
namespace
caf
{
namespace
caf
{
/// Stores all information
s
necessary for implementing an FSM-based parser.
/// Stores all information necessary for implementing an FSM-based parser.
template
<
class
Iterator
,
class
Sentinel
>
template
<
class
Iterator
,
class
Sentinel
>
struct
parser_state
{
struct
parser_state
{
/// Current position of the parser.
/// Current position of the parser.
...
...
libcaf_core/caf/typed_behavior.hpp
View file @
b8bea6dd
...
@@ -114,7 +114,7 @@ struct valid_input {
...
@@ -114,7 +114,7 @@ struct valid_input {
// this function is called from typed_behavior<...>::set and its whole
// this function is called from typed_behavior<...>::set and its whole
// purpose is to give users a nicer error message on a type mismatch
// purpose is to give users a nicer error message on a type mismatch
// (this function only has the type information
s
needed to understand the error)
// (this function only has the type information needed to understand the error)
template
<
class
SignatureList
,
class
InputList
>
template
<
class
SignatureList
,
class
InputList
>
void
static_check_typed_behavior_input
()
{
void
static_check_typed_behavior_input
()
{
constexpr
bool
is_valid
=
valid_input
<
SignatureList
,
InputList
>::
value
;
constexpr
bool
is_valid
=
valid_input
<
SignatureList
,
InputList
>::
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