Skip to content

Commit

Permalink
Remove inline
Browse files Browse the repository at this point in the history
  • Loading branch information
kimwalisch committed Jan 8, 2024
1 parent 3f7b165 commit 2ac9bdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nthPrime.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ namespace {
const uint64_t max_n = 425656284035217743ull;

/// Average prime gap near n
inline uint64_t avgPrimeGap(uint64_t n)
uint64_t avgPrimeGap(uint64_t n)
{
double x = (double) n;
x = std::max(8.0, x);
Expand Down

0 comments on commit 2ac9bdf

Please sign in to comment.