From db3d2f7ae12e107f771c5683636febe3e27e8716 Mon Sep 17 00:00:00 2001 From: Aina Niemetz Date: Tue, 27 Feb 2018 19:06:58 -0800 Subject: [PATCH] Remove unused code in pushDefineFunRecScop in smt2.cpp. (#1627) --- src/parser/smt2/smt2.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/parser/smt2/smt2.cpp b/src/parser/smt2/smt2.cpp index 77b50af4c..d55b9f54b 100644 --- a/src/parser/smt2/smt2.cpp +++ b/src/parser/smt2/smt2.cpp @@ -397,15 +397,12 @@ void Smt2::pushDefineFunRecScope( { pushScope(bindingLevel); - std::vector f_app; - f_app.push_back(func); // bound variables are those that are explicitly named in the preamble // of the define-fun(s)-rec command, we define them here for (const std::pair& svn : sortedVarNames) { Expr v = mkBoundVar(svn.first, svn.second); bvs.push_back(v); - f_app.push_back(v); } bvs.insert(bvs.end(), flattenVars.begin(), flattenVars.end()); -- 2.30.2