1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-02-05 21:32:55 +00:00

Correct improper application of const.

This commit is contained in:
Thomas Harte 2024-11-30 17:32:16 -05:00
parent 3addb8d72b
commit 23c67f7e38

View File

@ -87,7 +87,7 @@ template <bool include_clock>
template <bool lsb_first, typename IntT> void Line<include_clock>::write_internal(
const HalfCycles cycles,
int count,
const IntT levels
IntT levels
) {
remaining_delays_ += count * cycles.as_integral();