Skip to content

Commit

Permalink
Format fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
FabianKlimpel committed Jun 23, 2020
1 parent d0eb0f9 commit f3c5105
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Core/include/Acts/EventData/SingleFreeTrackParameters.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,7 @@ class SingleFreeTrackParameters {
std::enable_if_t<std::is_same<T, NeutralPolicy>::value, int> = 0>
SingleFreeTrackParameters(std::optional<CovMatrix_t> cov,
const FreeVector& parValues)
: m_oParameters(std::move(cov), parValues),
m_oChargePolicy() {}
: m_oParameters(std::move(cov), parValues), m_oChargePolicy() {}

// this class does not have a custom default constructor and thus should not
// provide any custom default cstors, dstor, or assignment. see ISOCPP C.20.
Expand Down Expand Up @@ -221,4 +220,4 @@ class SingleFreeTrackParameters {
ChargePolicy m_oChargePolicy; ///< charge policy object distinguishing
/// between charged and neutral tracks
};
} // namespace Acts
} // namespace Acts

0 comments on commit f3c5105

Please sign in to comment.