diff options
author | David Robillard <d@drobilla.net> | 2010-12-27 17:51:29 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2010-12-27 17:51:29 +0000 |
commit | 0b014dee824646461b7d402bf9bbcf954ff0eba3 (patch) | |
tree | 6e9da06aad29bc641bbc04e181a32e272cc66af8 /src/gc.cpp | |
parent | 28e3727290335ee85793795f7ec6d48e050db922 (diff) | |
download | resp-0b014dee824646461b7d402bf9bbcf954ff0eba3.tar.gz resp-0b014dee824646461b7d402bf9bbcf954ff0eba3.tar.bz2 resp-0b014dee824646461b7d402bf9bbcf954ff0eba3.zip |
Kill AType.
git-svn-id: http://svn.drobilla.net/resp/resp@359 ad02d1e2-f140-0410-9f75-f8b11f17cedd
Diffstat (limited to 'src/gc.cpp')
-rw-r--r-- | src/gc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -86,7 +86,7 @@ GC::collect(const Roots& roots) assert(!(*i)->marked()); } else { const Tag tag = (*i)->tag(); - if (tag == T_TUPLE || tag == T_TYPE) + if (tag == T_TUPLE) free(((ATuple*)*i)->_vec); tlsf_free((tlsf_t*)_pool, ((char*)(*i) - sizeof(Object::Header))); |