From: trevor_hansen Date: Wed, 14 Apr 2010 05:32:17 +0000 (+0000) Subject: Change a reference to a regular variable. This fixes an intermittent valgrind warning... X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=02b1d22b858a150b081d5b4924d25347da8421d3;p=francis%2Fstp.git Change a reference to a regular variable. This fixes an intermittent valgrind warning about accessing uninitialised memory git-svn-id: https://stp-fast-prover.svn.sourceforge.net/svnroot/stp-fast-prover/trunk/stp@673 e59a4935-1847-0410-ae03-e826735625c1 --- diff --git a/src/parser/LetMgr.h b/src/parser/LetMgr.h index e63a224..78ce39c 100644 --- a/src/parser/LetMgr.h +++ b/src/parser/LetMgr.h @@ -18,7 +18,7 @@ namespace BEEV { private: - const ASTNode& ASTUndefined; + const ASTNode ASTUndefined; // MAP: This map is from bound IDs that occur in LETs to // expression. The map is useful in checking replacing the IDs