From 3ca81c2dc3881aec0bbf94646c73a148d706c76d Mon Sep 17 00:00:00 2001 From: Daniel Schemmel Date: Sun, 29 Oct 2023 16:00:02 +0000 Subject: Change `GetConstraintLog` to work with `std::string`s instead of `char*`s --- lib/Solver/MetaSMTSolver.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/Solver/MetaSMTSolver.h') diff --git a/lib/Solver/MetaSMTSolver.h b/lib/Solver/MetaSMTSolver.h index 64c56c57..eab2f789 100644 --- a/lib/Solver/MetaSMTSolver.h +++ b/lib/Solver/MetaSMTSolver.h @@ -22,7 +22,7 @@ public: MetaSMTSolver(bool useForked, bool optimizeDivides); virtual ~MetaSMTSolver(); - virtual char *getConstraintLog(const Query &); + std::string getConstraintLog(const Query &) override; virtual void setCoreSolverTimeout(time::Span timeout); }; -- cgit v1.2.3