Skip to content

Commit

Permalink
float conversions were a red herring.. roll back the roll back
Browse files Browse the repository at this point in the history
  • Loading branch information
Luke Pickering committed Oct 30, 2024
1 parent fdcc7ba commit 9d795a2
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions python/splines.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
#include "TSpline.h"

#pragma GCC diagnostic ignored "-Wuseless-cast"
#pragma GCC diagnostic ignored "-Wfloat-conversion"

namespace py = pybind11;

Expand Down
1 change: 1 addition & 0 deletions splines/SplineBase.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#include "splines/SplineBase.h"

#pragma GCC diagnostic ignored "-Wuseless-cast"
#pragma GCC diagnostic ignored "-Wfloat-conversion"

// *****************************************
SplineBase::SplineBase() {
Expand Down
1 change: 1 addition & 0 deletions splines/SplineMonolith.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#endif

#pragma GCC diagnostic ignored "-Wuseless-cast"
#pragma GCC diagnostic ignored "-Wfloat-conversion"

// *****************************************
//Set everything to NULL or 0
Expand Down
1 change: 1 addition & 0 deletions splines/SplineStructs.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wuseless-cast"
#pragma GCC diagnostic ignored "-Wfloat-conversion"

// *******************
/// @brief CW: Add a struct to hold info about the splinified xsec parameters and help with FindSplineSegment
Expand Down
1 change: 1 addition & 0 deletions splines/splineFDBase.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#include "splineFDBase.h"

#pragma GCC diagnostic ignored "-Wuseless-cast"
#pragma GCC diagnostic ignored "-Wfloat-conversion"

//****************************************
splineFDBase::splineFDBase(covarianceXsec *xsec_)
Expand Down

0 comments on commit 9d795a2

Please sign in to comment.