ruby: fix vtable for linux destructor

develop
jj 2012-05-03 19:19:58 +02:00
parent ba1e3c4b23
commit 138461634e
1 changed files with 3 additions and 2 deletions

@ -243,9 +243,10 @@ sub render_class_vmethods {
};
push @lines_rb, 'end';
}
# on linux, the destructor uses 2 entries
$voff += 4 if $meth->getAttribute('is-destructor') and $^O =~ /linux/i;
$voff += 4;
}
}
sub render_global_objects {