Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
Barthelemy committed Jul 2, 2024
1 parent da08db6 commit 1ffb5ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Framework/include/QualityControl/RepoPathUtils.h
Original file line number Diff line number Diff line change
Expand Up @@ -142,11 +142,11 @@ class RepoPathUtils
std::string det;
size_t pos = fullPath.rfind(delimiter);
if (pos == std::string::npos) {
return {false, "", ""};
return { false, "", "" };
}
std::string path = fullPath.substr(0, pos);
std::string name = fullPath.substr(pos + 1);
return {true, path, name};
return { true, path, name };
}
};
} // namespace o2::quality_control::core
Expand Down

0 comments on commit 1ffb5ed

Please sign in to comment.