Skip to content

Commit

Permalink
Missing MIN -> std::min
Browse files Browse the repository at this point in the history
  • Loading branch information
wavefunction91 committed Mar 11, 2024
1 parent 847c23d commit 37488d3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4841,7 +4841,7 @@ void integral_4(size_t npts,

// cleanup code
for(; p_outer < npts; p_outer += NPTS_LOCAL) {
size_t npts_inner = MIN((size_t) NPTS_LOCAL, npts - p_outer);
size_t npts_inner = std::min((size_t) NPTS_LOCAL, npts - p_outer);
double *_point_outer = (_points + p_outer);

double xA = rA.x;
Expand Down

0 comments on commit 37488d3

Please sign in to comment.