Skip to content

Commit

Permalink
Merge pull request #122 from pps83/master-fix-warn
Browse files Browse the repository at this point in the history
Fix unused parameter warning in ByteAlignedPacking::decodeArray
  • Loading branch information
lemire authored Nov 30, 2024
2 parents 30ad622 + 4361763 commit 0f82957
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions headers/blockpacking.h
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,7 @@ class ByteAlignedPacking : public IntegerCODEC {

const uint32_t *decodeArray(const uint32_t *in, const size_t length,
uint32_t *out, size_t &nvalue) {
(void)length;
const uint32_t actuallength = *in++;
const uint8_t *inbyte = reinterpret_cast<const uint8_t *>(in);
const uint32_t *const initout(out);
Expand Down

0 comments on commit 0f82957

Please sign in to comment.