From: trevor_hansen Date: Wed, 4 Nov 2009 12:50:10 +0000 (+0000) Subject: Bugfix. memory leak. X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=f34b1f12e08b04d6b5987b9aaa3a1a271c3c1746;p=francis%2Fstp.git Bugfix. memory leak. git-svn-id: https://stp-fast-prover.svn.sourceforge.net/svnroot/stp-fast-prover/trunk/stp@380 e59a4935-1847-0410-ae03-e826735625c1 --- diff --git a/src/parser/let-funcs.h b/src/parser/let-funcs.h index fad5b9b..9b33e21 100644 --- a/src/parser/let-funcs.h +++ b/src/parser/let-funcs.h @@ -32,6 +32,11 @@ namespace BEEV ASTUndefined = undefined; } + ~LETMgr() + { + delete _letid_expr_map; + } + ASTNode ResolveID(const ASTNode& var); //Functions that are used to manage LET expressions