Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
polymerizedsage committed Oct 25, 2024
1 parent 7e66945 commit 2936527
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/science/libndtp/ndtp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ ByteArray NDTPPayloadSpiketrain::pack() const {
result.push_back(bin_size_ms);

// pack clamped spike counts
auto [bytes, final_bit_offset] = to_bytes(clamped_counts, BIT_WIDTH_BINNED_SPIKES, {}, 0);
auto [bytes, final_bit_offset, _] = to_bytes(clamped_counts, BIT_WIDTH_BINNED_SPIKES, {}, 0);
result.insert(result.end(), bytes.begin(), bytes.end());

return result;
Expand Down

0 comments on commit 2936527

Please sign in to comment.