Skip to content

Commit

Permalink
tidy: Fix warnings when linking
Browse files Browse the repository at this point in the history
  • Loading branch information
KSkwarczynski authored Jan 8, 2025
1 parent faabe1d commit 7ce9f0d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions splines/splineFDBase.h
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,11 @@ class splineFDBase : public SplineBase {

protected:
/// @brief CW:Code used in step by step reweighting, Find Spline Segment for each param
inline void FindSplineSegment() override;
void FindSplineSegment() override;
/// @brief CPU based code which eval weight for each spline
inline void CalcSplineWeights() override;
void CalcSplineWeights() override;
/// @brief Calc total event weight, not used by Bin-by-bin splines
inline void ModifyWeights() override {return;};
void ModifyWeights() override {return;};
/// Pointer to covariance xsec
covarianceXsec* xsec;

Expand Down

0 comments on commit 7ce9f0d

Please sign in to comment.