From 0452955069e051d5916f0d1ab04bd0ca43f75697 Mon Sep 17 00:00:00 2001 From: "Emil J. Tywoniak" Date: Mon, 10 Nov 2025 12:02:21 +0100 Subject: [PATCH] rtlil: add explanatory note to SigSpec::Chunks --- kernel/rtlil.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/kernel/rtlil.h b/kernel/rtlil.h index 98230ab1f..f81cba38c 100644 --- a/kernel/rtlil.h +++ b/kernel/rtlil.h @@ -1353,6 +1353,9 @@ public: return *this; } + // SigSpec::Chunks holds one reconstructed chunk at a time + // to provide the SigSpec::chunks() read-only chunks view + // since vector SigSpec::chunks_ has been removed struct Chunks { Chunks(const SigSpec &spec) : spec(spec) {} struct const_iterator {