mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-07 06:33:24 +00:00
rtlil.h: Fix selection ctor ordering
This commit is contained in:
parent
cd3b914132
commit
7d7ee5d9bf
1 changed files with 1 additions and 1 deletions
|
@ -1183,7 +1183,7 @@ struct RTLIL::Selection
|
||||||
// the design to select from
|
// the design to select from
|
||||||
RTLIL::Design *design = nullptr
|
RTLIL::Design *design = nullptr
|
||||||
) :
|
) :
|
||||||
full_selection(full && !boxes), selects_boxes(boxes), complete_selection(full && boxes), current_design(design) { }
|
selects_boxes(boxes), complete_selection(full && boxes), full_selection(full && !boxes), current_design(design) { }
|
||||||
|
|
||||||
// checks if the given module exists in the current design and is a
|
// checks if the given module exists in the current design and is a
|
||||||
// boxed module, warning the user if the current design is not set
|
// boxed module, warning the user if the current design is not set
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue