summaryrefslogtreecommitdiff
path: root/src/api
diff options
context:
space:
mode:
authorAbdalrhman Mohamed <32971963+abdoo8080@users.noreply.github.com>2021-03-18 13:33:47 -0500
committerGitHub <noreply@github.com>2021-03-18 13:33:47 -0500
commit2638e65d242fa9da99d038db07c4a2b75e8dfde3 (patch)
treea3be9ecd4d807957e8b0755368707158ca2b79f0 /src/api
parentd52bc44199583e3c06816c1d30f61e8075820c1b (diff)
Eliminate more uses of SExpr. (#6149)
This PR eliminates all remaining uses of SExpr outside of statistics.
Diffstat (limited to 'src/api')
-rw-r--r--src/api/cvc4cpp.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/cvc4cpp.cpp b/src/api/cvc4cpp.cpp
index 4ccff9930..e87e6176b 100644
--- a/src/api/cvc4cpp.cpp
+++ b/src/api/cvc4cpp.cpp
@@ -6229,7 +6229,7 @@ std::string Solver::getOption(const std::string& option) const
{
CVC4_API_TRY_CATCH_BEGIN;
//////// all checks before this line
- SExpr res = d_smtEngine->getOption(option);
+ Node res = d_smtEngine->getOption(option);
return res.toString();
////////
CVC4_API_TRY_CATCH_END;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback