From: trevor_hansen Date: Wed, 13 Apr 2011 04:52:49 +0000 (+0000) Subject: Fix the build. Without -NDEBUG wouldn't compile. X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=817c425f2bc6c9e8cece14299fec9c99bfe37f15;p=francis%2Fstp.git Fix the build. Without -NDEBUG wouldn't compile. git-svn-id: https://stp-fast-prover.svn.sourceforge.net/svnroot/stp-fast-prover/trunk/stp@1271 e59a4935-1847-0410-ae03-e826735625c1 --- diff --git a/src/simplifier/SubstitutionMap.cpp b/src/simplifier/SubstitutionMap.cpp index 4e1668e..c4a4da7 100644 --- a/src/simplifier/SubstitutionMap.cpp +++ b/src/simplifier/SubstitutionMap.cpp @@ -219,7 +219,7 @@ ASTNode SubstitutionMap::applySubstitutionMap(const ASTNode& n) // for a while. #ifndef NDEBUG cache.clear(); - assert( result == replace(result,*SolverMap,cache,&nf, false)); + assert( result == replace(result,*SolverMap,cache,nf, false)); #endif bm->GetRunTimes()->stop(RunTimes::ApplyingSubstitutions);