Skip to content

Commit

Permalink
fix: Restore Orthogonal seedfinder default constructor (#3827)
Browse files Browse the repository at this point in the history
Uses `getDummyLogger` to restore the default constructor for the orthogonal seed finder. See #3807.
  • Loading branch information
paulgessinger authored Nov 7, 2024
1 parent 8c1f155 commit 436c636
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Core/include/Acts/Seeding/SeedFinderOrthogonal.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class SeedFinderOrthogonal {
*/
~SeedFinderOrthogonal() = default;

SeedFinderOrthogonal() = delete;
SeedFinderOrthogonal() = default;
SeedFinderOrthogonal(const SeedFinderOrthogonal<external_spacepoint_t> &) =
delete;
SeedFinderOrthogonal<external_spacepoint_t> &operator=(
Expand Down Expand Up @@ -254,7 +254,7 @@ class SeedFinderOrthogonal {
/**
* @brief The logger
*/
std::unique_ptr<const Acts::Logger> m_logger{nullptr};
std::unique_ptr<const Acts::Logger> m_logger{getDummyLogger().clone()};
};
} // namespace Acts

Expand Down

0 comments on commit 436c636

Please sign in to comment.