From 80b8cd19c49c1a2b1ae4d2cd0acdd17b7c4a318a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Povi=C5=A1er?= Date: Sat, 9 Dec 2023 18:48:30 +0100 Subject: [PATCH] rtlil: Fix value type for iterator over `SigSpec` When we are iterating over a `SigSpec`, the visited values will be of type `SigBit` (as is the return type of `operator*()`). Account for that in the publicly declared types. --- kernel/rtlil.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/kernel/rtlil.h b/kernel/rtlil.h index 9af3d41ec..d419872c6 100644 --- a/kernel/rtlil.h +++ b/kernel/rtlil.h @@ -806,10 +806,10 @@ struct RTLIL::SigBit struct RTLIL::SigSpecIterator { typedef std::input_iterator_tag iterator_category; - typedef RTLIL::SigSpec value_type; + typedef RTLIL::SigBit value_type; typedef ptrdiff_t difference_type; - typedef RTLIL::SigSpec* pointer; - typedef RTLIL::SigSpec& reference; + typedef RTLIL::SigBit* pointer; + typedef RTLIL::SigBit& reference; RTLIL::SigSpec *sig_p; int index; @@ -823,10 +823,10 @@ struct RTLIL::SigSpecIterator struct RTLIL::SigSpecConstIterator { typedef std::input_iterator_tag iterator_category; - typedef RTLIL::SigSpec value_type; + typedef RTLIL::SigBit value_type; typedef ptrdiff_t difference_type; - typedef RTLIL::SigSpec* pointer; - typedef RTLIL::SigSpec& reference; + typedef RTLIL::SigBit* pointer; + typedef RTLIL::SigBit& reference; const RTLIL::SigSpec *sig_p; int index;