Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
jbbjarnason committed Oct 9, 2023
1 parent 2bb7998 commit 2a54b55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/ipc/inc/public/tfc/ipc/details/impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ class slot_callback : public std::enable_shared_from_this<slot_callback<type_des
slot_.async_receive([bind_reference, callb = std::forward<decltype(callback)>(callback)](
std::expected<value_t, std::error_code> value) mutable {
if (auto sptr = bind_reference.lock()) {
sptr->async_new_state(value, std::forward<decltype(callb)>(callb)); //NOSONAR
sptr->async_new_state(value, std::forward<decltype(callb)>(callb)); // NOSONAR
}
});
}
Expand Down

0 comments on commit 2a54b55

Please sign in to comment.