Skip to content
Snippets Groups Projects
Commit a8b39198 authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

MNT: Don't pass a value to NoOfThreads, so that it will use a default value

parent ca6e196c
No related branches found
No related tags found
No related merge requests found
Pipeline #26008 skipped
......@@ -59,7 +59,7 @@ public:
const std::vector<ExtrapolationType>& et,
unsigned int order=3,
bool copy_low_order=true,
Utilities::NoOfThreads nthr=Utilities::NoOfThreads(1),
Utilities::NoOfThreads nthr=Utilities::NoOfThreads(),
double prec=1e-8,
bool data_are_coefs=false)
: _valid(false), _own_coef(false), _coef(0), _cptr(0), _ndim(0), _nthr(nthr._n)
......@@ -71,7 +71,7 @@ public:
ExtrapolationType et=Zeros,
unsigned int order=3,
bool copy_low_order=true,
Utilities::NoOfThreads nthr=Utilities::NoOfThreads(1),
Utilities::NoOfThreads nthr=Utilities::NoOfThreads(),
double prec=1e-8,
bool data_are_coefs=false)
: _valid(false), _own_coef(false), _coef(0), _cptr(0), _ndim(0), _nthr(nthr._n)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment