1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-01-05 13:30:07 +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
commit 9d87296316
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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