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
78f54969
Commit
78f54969
authored
Nov 19, 2019
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix formatting
parent
220f1ac3
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
8 deletions
+6
-8
libcaf_core/caf/all.hpp
libcaf_core/caf/all.hpp
+5
-5
libcaf_io/caf/io/basp/all.hpp
libcaf_io/caf/io/basp/all.hpp
+0
-1
libcaf_test/caf/test/unit_test_impl.hpp
libcaf_test/caf/test/unit_test_impl.hpp
+1
-2
No files found.
libcaf_core/caf/all.hpp
View file @
78f54969
...
...
@@ -289,11 +289,11 @@
///
/// @section Atoms Atoms
///
/// Atoms are a nice way to add semantic information to a message.
///
Assuming an actor wants to provide a "math service" for integers. It
///
could provide operations such as addition, subtraction, etc.
///
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.
/// Atoms are a nice way to add semantic information to a message.
Assuming an
///
actor wants to provide a "math service" for integers. It could provide
///
operations such as addition, subtraction, etc. 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.
///
/// Example actor:
/// ~~
...
...
libcaf_io/caf/io/basp/all.hpp
View file @
78f54969
...
...
@@ -141,4 +141,3 @@
/// of {@link message_type} below.
///
/// 
libcaf_test/caf/test/unit_test_impl.hpp
View file @
78f54969
...
...
@@ -339,8 +339,7 @@ bool engine::run(bool colorize,
};
# endif
auto
test_enabled
=
[
&
](
const
whitelist_type
&
whitelist
,
const
blacklist_type
&
blacklist
,
const
test
&
x
)
{
const
blacklist_type
&
blacklist
,
const
test
&
x
)
{
// Disabled tests run if explicitly requested by the user, i.e.,
// tests_str is not the ".*" catch-all default.
return
(
!
x
.
disabled
()
||
tests_str
!=
".*"
)
...
...
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