1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-08-08 14:25:05 +00:00

Merge pull request #1422 from TomHarte/MutableLevels

Correct improper application of `const`.
This commit is contained in:
Thomas Harte
2024-11-30 17:53:56 -05:00
committed by GitHub

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();