refactor: run clang linter and formatter
This commit is contained in:
parent
7668befc06
commit
2dd2b9e087
27 changed files with 189 additions and 157 deletions
|
@ -91,8 +91,9 @@ auto endpoint_unx(context &ctx, bool &result, env_t env_) -> ::result {
|
|||
[path]() {
|
||||
link(env().proc("log"));
|
||||
handle ep_listen = listen(path).value();
|
||||
receive([p{make_shared<controller>(ep_listen)}](auto from, auto m) {
|
||||
return p->receive(move(from), move(m));
|
||||
receive([p{make_shared<controller>(ep_listen)}](const auto &from,
|
||||
const auto &m) {
|
||||
return p->receive(from, m);
|
||||
});
|
||||
return ok();
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue