mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-12 04:03:45 +00:00
ql_dsp_simd: Remove array usage failing VS build
This commit is contained in:
parent
de61ff848c
commit
c68fd85b9c
|
@ -66,7 +66,7 @@ struct QlDspSimdPass : public Pass {
|
|||
|
||||
static bool is_cascade(const Cell* cell)
|
||||
{
|
||||
std::array cascade_ports {
|
||||
static const std::vector<IdString> cascade_ports = {
|
||||
ID(a_cout_o),
|
||||
ID(b_cout_o),
|
||||
ID(z_cout_o),
|
||||
|
|
Loading…
Reference in a new issue