Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
AJPfleger committed Sep 8, 2024
1 parent bafc568 commit 561a879
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core/include/Acts/Navigation/MultiLayerNavigation.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ class MultiLayerNavigation : public IInternalNavigation {
std::vector<const Acts::Surface*>& surfaces) const {
// sorting the surfaces according to their radial distance
std::ranges::sort(surfaces, {}, [&gctx](const auto& s) {
assert(surface != nullptr && "Uninitialized surface");
assert(s != nullptr && "Uninitialized surface");
const auto& center = s->center(gctx);
return std::tie(center.x(), center.y(), center.z());
});
Expand Down

0 comments on commit 561a879

Please sign in to comment.