Skip to content

Commit

Permalink
add missing inline
Browse files Browse the repository at this point in the history
  • Loading branch information
ClementPernet committed Dec 3, 2021
1 parent b51626b commit 17ecb03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fflas-ffpack/utils/bit_manipulation.h
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ static uint64_t divide_128(uint64_t u1, uint64_t u0, uint64_t v, uint64_t *r)
}
#endif

static uint64_t getpoweroftwoden_128(uint32_t d, uint64_t q, uint64_t *r) {
static inline uint64_t getpoweroftwoden_128(uint32_t d, uint64_t q, uint64_t *r) {
#if defined (__FFLASFFPACK_HAVE_INT128) && defined(__x86_64__)
return divide_128(1_ui64 << (d - 1), 0, q, r);
#else
Expand Down

0 comments on commit 17ecb03

Please sign in to comment.