mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-15 13:28:59 +00:00
rtlil.h: Fix selection ctor ordering
This commit is contained in:
parent
cd3b914132
commit
7d7ee5d9bf
|
@ -1183,7 +1183,7 @@ struct RTLIL::Selection
|
|||
// the design to select from
|
||||
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
|
||||
// boxed module, warning the user if the current design is not set
|
||||
|
|
Loading…
Reference in a new issue