Skip to content

Commit

Permalink
Update routing_manager_impl.cpp
Browse files Browse the repository at this point in the history
Add missing space after the if statement
  • Loading branch information
DiogoPedrozza committed Nov 7, 2023
1 parent e7dcc67 commit 11478ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion implementation/routing/src/routing_manager_impl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4066,7 +4066,7 @@ routing_manager_impl::get_requesters_unlocked(
std::set<client_t> its_requesters;

auto found_service = requested_services_.find(_service);
if (found_service == requested_services_.end()){
if (found_service == requested_services_.end()) {
found_service = requested_services_.find(ANY_SERVICE);
if (found_service == requested_services_.end()) {
return its_requesters;
Expand Down

0 comments on commit 11478ad

Please sign in to comment.