binpac: Fix double-free.

The field is deleted by a base class dtor.
This commit is contained in:
Jon Siwek 2013-09-10 10:58:54 -05:00 committed by Tim Wojtulewicz
parent 61cc83affa
commit 871541e636

View file

@ -133,7 +133,6 @@ LetDecl::LetDecl(ID *id, Type *type, Expr *expr)
LetDecl::~LetDecl()
{
delete id_;
delete type_;
delete expr_;
}