summaryrefslogtreecommitdiff
path: root/src/smt/command.cpp
diff options
context:
space:
mode:
authorAndres Noetzli <andres.noetzli@gmail.com>2020-02-20 12:07:46 -0800
committerGitHub <noreply@github.com>2020-02-20 14:07:46 -0600
commit32fdf625f66b8ebf260756962a53d63eec771c12 (patch)
tree5faa5c73f80a9a1b73dbfdd44063436184047c98 /src/smt/command.cpp
parentc780b1778e97afe15a0eb2522505b796cd5bbe71 (diff)
Remove unused code (#3782)
Diffstat (limited to 'src/smt/command.cpp')
-rw-r--r--src/smt/command.cpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/smt/command.cpp b/src/smt/command.cpp
index ce8d4fa88..c1aa89832 100644
--- a/src/smt/command.cpp
+++ b/src/smt/command.cpp
@@ -41,23 +41,6 @@ using namespace std;
namespace CVC4 {
-namespace {
-
-std::vector<Expr> ExportTo(ExprManager* exprManager,
- ExprManagerMapCollection& variableMap,
- const std::vector<Expr>& exprs)
-{
- std::vector<Expr> exported;
- exported.reserve(exprs.size());
- for (const Expr& expr : exprs)
- {
- exported.push_back(expr.exportTo(exprManager, variableMap));
- }
- return exported;
-}
-
-} // namespace
-
const int CommandPrintSuccess::s_iosIndex = std::ios_base::xalloc();
const CommandSuccess* CommandSuccess::s_instance = new CommandSuccess();
const CommandInterrupted* CommandInterrupted::s_instance =
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback