mirror of https://github.com/KLayout/klayout.git
Fixed memory statistics for array (wasn't taking the right statistics for irregular arrays)
This commit is contained in:
parent
8b0ab115ed
commit
0a10635363
|
|
@ -2508,7 +2508,7 @@ struct array
|
|||
}
|
||||
db::mem_stat (stat, purpose, cat, m_obj, true, (void *) this);
|
||||
if (mp_base) {
|
||||
db::mem_stat (stat, purpose, cat, *mp_base, false, (void *) this);
|
||||
mp_base->mem_stat (stat, purpose, cat, false, (void *) this);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue