Commit b15a194e authored by Dominik Charousset's avatar Dominik Charousset

Fix formatting

parent 007a64e7
...@@ -166,7 +166,6 @@ public: ...@@ -166,7 +166,6 @@ public:
uri value_; uri value_;
}; };
// -- constructors, destructors, and assignment operators -------------------- // -- constructors, destructors, and assignment operators --------------------
constexpr node_id() noexcept { constexpr node_id() noexcept {
......
...@@ -55,7 +55,7 @@ namespace { ...@@ -55,7 +55,7 @@ namespace {
std::atomic<uint8_t> system_id; std::atomic<uint8_t> system_id;
} // <anonymous> } // namespace
node_id node_id::default_data::local(const actor_system_config&) { node_id node_id::default_data::local(const actor_system_config&) {
CAF_LOG_TRACE(""); CAF_LOG_TRACE("");
......
...@@ -82,9 +82,7 @@ struct fixture : test_coordinator_fixture<> { ...@@ -82,9 +82,7 @@ struct fixture : test_coordinator_fixture<> {
node_id last_hop; node_id last_hop;
actor testee; actor testee;
fixture() fixture() : proxies_backend(sys), proxies(sys, proxies_backend) {
: proxies_backend(sys),
proxies(sys, proxies_backend) {
auto tmp = make_node_id(123, "0011223344556677889900112233445566778899"); auto tmp = make_node_id(123, "0011223344556677889900112233445566778899");
last_hop = unbox(std::move(tmp)); last_hop = unbox(std::move(tmp));
testee = sys.spawn<lazy_init>(testee_impl); testee = sys.spawn<lazy_init>(testee_impl);
......
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