Remove another c99 non-const array. (nw)

This commit is contained in:
couriersud 2015-05-16 19:22:11 +02:00
parent 5489a72aa9
commit 2d934ef214

View File

@ -62,7 +62,8 @@ UINT32 truthtable_desc_t::get_ignored_extended(UINT32 i)
* may change the output
*/
int bits = (1<<count_bits(nign));
int t[bits];
plinearlist_t<int> t;
t.set_count(bits);
for (UINT32 j=1; j<bits; j++)
{