summaryrefslogtreecommitdiff
path: root/test/system/smt2_compliance.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/system/smt2_compliance.cpp')
-rw-r--r--test/system/smt2_compliance.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/system/smt2_compliance.cpp b/test/system/smt2_compliance.cpp
index 108e30b5c..99b4c625c 100644
--- a/test/system/smt2_compliance.cpp
+++ b/test/system/smt2_compliance.cpp
@@ -19,6 +19,7 @@
#include <sstream>
#include "expr/expr_manager.h"
+#include "options/set_language.h"
#include "options/smt_options.h"
#include "parser/parser.h"
#include "parser/parser_builder.h"
@@ -36,7 +37,7 @@ int main() {
opts.set(options::inputLanguage, language::input::LANG_SMTLIB_V2);
opts.set(options::outputLanguage, language::output::LANG_SMTLIB_V2);
- cout << Expr::setlanguage(language::output::LANG_SMTLIB_V2);
+ cout << language::SetLanguage(language::output::LANG_SMTLIB_V2);
ExprManager em(opts);
SmtEngine smt(&em);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback