Skip to content

Commit

Permalink
Merge pull request #119 from cartoonist/xxsds-master
Browse files Browse the repository at this point in the history
Fix 'write_int' declaration
  • Loading branch information
eseiler authored Aug 21, 2023
2 parents 0f34434 + 09fe00e commit b1fdb6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/sdsl/bits.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ struct bits_impl
static constexpr uint32_t hi11(uint64_t x);

//! Writes value x to an bit position in an array.
static constexpr void write_int(uint64_t * word, uint64_t x, const uint8_t offset = 0, const uint8_t len = 64);
static constexpr void write_int(uint64_t * word, uint64_t x, uint8_t offset = 0, const uint8_t len = 64);

//! Writes value x to an bit position in an array and moves the bit-pointer.
static constexpr void write_int_and_move(uint64_t *& word, uint64_t x, uint8_t & offset, const uint8_t len);
Expand Down

0 comments on commit b1fdb6c

Please sign in to comment.