Commit 78f54969 authored by Dominik Charousset's avatar Dominik Charousset

Fix formatting

parent 220f1ac3
...@@ -289,11 +289,11 @@ ...@@ -289,11 +289,11 @@
/// ///
/// @section Atoms Atoms /// @section Atoms Atoms
/// ///
/// Atoms are a nice way to add semantic information to a message. /// Atoms are a nice way to add semantic information to a message. Assuming an
/// Assuming an actor wants to provide a "math service" for integers. It /// actor wants to provide a "math service" for integers. It could provide
/// could provide operations such as addition, subtraction, etc. /// operations such as addition, subtraction, etc. This operations all have two
/// This operations all have two operands. Thus, the actor does not know /// operands. Thus, the actor does not know what operation the sender of a
/// what operation the sender of a message wanted by receiving just two integers. /// message wanted by receiving just two integers.
/// ///
/// Example actor: /// Example actor:
/// ~~ /// ~~
......
...@@ -141,4 +141,3 @@ ...@@ -141,4 +141,3 @@
/// of {@link message_type} below. /// of {@link message_type} below.
/// ///
/// ![](basp_sequence.png) /// ![](basp_sequence.png)
...@@ -339,8 +339,7 @@ bool engine::run(bool colorize, ...@@ -339,8 +339,7 @@ bool engine::run(bool colorize,
}; };
# endif # endif
auto test_enabled = [&](const whitelist_type& whitelist, auto test_enabled = [&](const whitelist_type& whitelist,
const blacklist_type& blacklist, const blacklist_type& blacklist, const test& x) {
const test& x) {
// Disabled tests run if explicitly requested by the user, i.e., // Disabled tests run if explicitly requested by the user, i.e.,
// tests_str is not the ".*" catch-all default. // tests_str is not the ".*" catch-all default.
return (!x.disabled() || tests_str != ".*") return (!x.disabled() || tests_str != ".*")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment