Skip to content

Commit a4302bc

Browse files
including cassert instead of assert
1 parent 8228e26 commit a4302bc

2 files changed

Lines changed: 1 addition & 5 deletions

File tree

GPU/TPCFastTransformation/MultivariatePolynomial.h

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,6 @@ class MultivariatePolynomial : public FlatObject, public MultivariatePolynomialH
5050
construct();
5151
}
5252

53-
/// default constructor for runtime evaluation of polynomial formula (can be used only with clone from object!)
54-
template <bool IsEnabled = true, typename std::enable_if<(IsEnabled && (Dim == 0 && Degree == 0)), int>::type = 0>
55-
MultivariatePolynomial(){};
56-
5753
/// constructor for compile time evaluation of polynomial formula
5854
template <bool IsEnabled = true, typename std::enable_if<(IsEnabled && (Dim != 0 && Degree != 0)), int>::type = 0>
5955
MultivariatePolynomial() : mNParams{this->getNParameters(Degree, Dim)}

GPU/TPCFastTransformation/MultivariatePolynomialHelper.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
#include <vector>
2222
#include <string>
2323
#include <fmt/format.h>
24-
#include <assert.h>
24+
#include <cassert>
2525
#endif
2626

2727
namespace GPUCA_NAMESPACE::gpu

0 commit comments

Comments
 (0)