added a comment.

git-svn-id: svn://10.0.0.236/trunk@65272 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
beard%netscape.com 2000-04-05 01:55:14 +00:00
parent 3518b8c6fc
commit 1bd7f13d64
2 changed files with 8 additions and 0 deletions

View File

@ -74,6 +74,10 @@ namespace JavaScript {
#undef define_atomic_type
/**
* Traits for classes that need to have their destructor called
* when reclaimed by the garbage collector.
*/
template <class T> struct gc_traits_finalizable {
static void finalizer(void* obj, void* client_data)
{

View File

@ -74,6 +74,10 @@ namespace JavaScript {
#undef define_atomic_type
/**
* Traits for classes that need to have their destructor called
* when reclaimed by the garbage collector.
*/
template <class T> struct gc_traits_finalizable {
static void finalizer(void* obj, void* client_data)
{