1
0
mirror of synced 2026-01-18 01:12:10 +00:00
Martin Povišer 6d9cd16fad cellaigs: Drop initializer list in call to IdString::in
Remove superfluous curly braces in call to IdString::in to address
a compilation error (reproduced below) under GCC 9 and earlier.

kernel/cellaigs.cc:395:18: error: call to member function 'in' is ambiguous
if (cell->type.in({ID($gt), ID($ge)}))
~~~~~~~~~~~^~
./kernel/rtlil.h:383:8: note: candidate function
bool in(const std::string &rhs) const { return *this == rhs; }
^
./kernel/rtlil.h:384:8: note: candidate function
bool in(const pool &rhs) const { return rhs.co...
^
2023-08-14 11:42:19 +02:00
..
2022-11-30 18:24:35 +01:00
2022-01-28 23:34:41 +01:00
2023-08-11 04:46:52 +02:00
2022-05-27 12:37:03 +02:00
2021-10-08 15:44:07 +02:00
2022-05-13 00:37:14 +02:00
2022-01-28 23:34:41 +01:00
2023-08-11 04:46:52 +02:00
2022-11-30 18:24:35 +01:00
2023-04-17 10:53:05 -07:00
2023-01-11 18:07:16 +01:00