diff options
author | Daniel Schemmel <daniel@schemmel.net> | 2023-10-29 16:00:02 +0000 |
---|---|---|
committer | MartinNowack <2443641+MartinNowack@users.noreply.github.com> | 2024-01-30 21:40:32 +0000 |
commit | 3ca81c2dc3881aec0bbf94646c73a148d706c76d (patch) | |
tree | 27852ee64e2148b2225f7d4dfd4e33b244be4cfd /lib/Solver/IndependentSolver.cpp | |
parent | f813c88c8cb868fc9c0be78fbf92a94d72ac02b0 (diff) | |
download | klee-3ca81c2dc3881aec0bbf94646c73a148d706c76d.tar.gz |
Change `GetConstraintLog` to work with `std::string`s instead of `char*`s
Diffstat (limited to 'lib/Solver/IndependentSolver.cpp')
-rw-r--r-- | lib/Solver/IndependentSolver.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Solver/IndependentSolver.cpp b/lib/Solver/IndependentSolver.cpp index c05fa6bb..3d73b067 100644 --- a/lib/Solver/IndependentSolver.cpp +++ b/lib/Solver/IndependentSolver.cpp @@ -404,7 +404,7 @@ public: std::vector< std::vector<unsigned char> > &values, bool &hasSolution); SolverRunStatus getOperationStatusCode(); - char *getConstraintLog(const Query&); + std::string getConstraintLog(const Query&) override; void setCoreSolverTimeout(time::Span timeout); }; @@ -550,7 +550,7 @@ SolverImpl::SolverRunStatus IndependentSolver::getOperationStatusCode() { return solver->impl->getOperationStatusCode(); } -char *IndependentSolver::getConstraintLog(const Query& query) { +std::string IndependentSolver::getConstraintLog(const Query& query) { return solver->impl->getConstraintLog(query); } |