Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
Signed-off-by: Jacob Perron <[email protected]>
  • Loading branch information
jacobperron committed Jun 13, 2019
1 parent e2e4291 commit 585b287
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -194,8 +194,7 @@ void CustomDataReaderListener::fill_service_names_and_types_by_guid(
// Check if the topic suffix matches and is at the end of the name
const std::string & topic_name = it.first;
auto suffix_position = topic_name.rfind(suffix);
if (suffix_position == std::string::npos)
{
if (suffix_position == std::string::npos) {
continue;
}

Expand Down

0 comments on commit 585b287

Please sign in to comment.