summaryrefslogtreecommitdiff
path: root/examples/api/strings.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/api/strings.cpp')
-rw-r--r--examples/api/strings.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/examples/api/strings.cpp b/examples/api/strings.cpp
index 14ab0e64d..2e5d467d3 100644
--- a/examples/api/strings.cpp
+++ b/examples/api/strings.cpp
@@ -18,6 +18,7 @@
//#include <cvc4/cvc4.h> // use this after CVC4 is properly installed
#include "smt/smt_engine.h"
+#include "options/set_language.h"
using namespace CVC4;
@@ -35,8 +36,8 @@ int main() {
smt.setOption("strings-exp", true);
// Set output language to SMTLIB2
- std::cout << Expr::setlanguage(language::output::LANG_SMTLIB_V2);
-
+ std::cout << language::SetLanguage(language::output::LANG_SMTLIB_V2);
+
// String type
Type string = em.stringType();
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback