pyosys cannot parse header with omitted function args

This commit is contained in:
Akash Levy 2025-09-28 01:37:30 -07:00
parent 7ebd972165
commit 4b6b254e31
1 changed files with 2 additions and 2 deletions

View File

@ -1244,8 +1244,8 @@ private:
public:
SigSpec() : width_(0), hash_(0) {}
SigSpec(std::initializer_list<RTLIL::SigSpec> 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);