Skip to content

Commit

Permalink
Fix for amalgamation
Browse files Browse the repository at this point in the history
  • Loading branch information
randombit committed Jul 16, 2024
1 parent 7565977 commit 3b11f09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/math/numbertheory/nistp_redc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ namespace {
* Treating this MPI as a sequence of 32-bit words in big-endian
* order, return word i. The array is assumed to be large enough.
*/
inline uint32_t get_uint32(const word xw[], size_t i) {
constexpr uint32_t get_uint32(const word xw[], size_t i) {
#if(BOTAN_MP_WORD_BITS == 32)
return xw[i];
#else
Expand Down

0 comments on commit 3b11f09

Please sign in to comment.