From 4b6b254e314cf0bd1191706900a2358e8503e2db Mon Sep 17 00:00:00 2001 From: Akash Levy Date: Sun, 28 Sep 2025 01:37:30 -0700 Subject: [PATCH] pyosys cannot parse header with omitted function args --- kernel/rtlil.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kernel/rtlil.h b/kernel/rtlil.h index e240cf885..5271a3111 100644 --- a/kernel/rtlil.h +++ b/kernel/rtlil.h @@ -1244,8 +1244,8 @@ private: public: SigSpec() : width_(0), hash_(0) {} SigSpec(std::initializer_list parts); - SigSpec(const SigSpec &) = default; - SigSpec(SigSpec &&) = default; + SigSpec(const SigSpec &value) = default; + SigSpec(SigSpec &&value) = default; SigSpec(const RTLIL::Const &value); SigSpec(RTLIL::Const &&value); SigSpec(const RTLIL::SigChunk &chunk);