diff options
Diffstat (limited to 'src/emu/netlist/plib/palloc.h')
-rw-r--r-- | src/emu/netlist/plib/palloc.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/emu/netlist/plib/palloc.h b/src/emu/netlist/plib/palloc.h index 26f76255e76..01193998392 100644 --- a/src/emu/netlist/plib/palloc.h +++ b/src/emu/netlist/plib/palloc.h @@ -68,7 +68,6 @@ inline void pfree_t(T *p) template <typename T> inline T *palloc_array_t(size_t N) { - //printf("here palloc_array %d\n", (unsigned) N); char *buf = reinterpret_cast<char *>(palloc_raw(N * sizeof(T) + 64*2)); size_t *s = reinterpret_cast<size_t *>(buf); *s = N; @@ -86,7 +85,6 @@ inline void pfree_array_t(T *p) buf -= 64; size_t *s = reinterpret_cast<size_t *>(buf); size_t N = *s; - //printf("here pfree_array %d\n", (unsigned) N); while (N > 0) { p->~T(); |