about summary refs log tree commit diff homepage
path: root/include/klee/Solver/SolverImpl.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/klee/Solver/SolverImpl.h')
-rw-r--r--include/klee/Solver/SolverImpl.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/klee/Solver/SolverImpl.h b/include/klee/Solver/SolverImpl.h
index b73370b9..a8b4f8e4 100644
--- a/include/klee/Solver/SolverImpl.h
+++ b/include/klee/Solver/SolverImpl.h
@@ -101,9 +101,9 @@ namespace klee {
     /// status code
     static const char* getOperationStatusString(SolverRunStatus statusCode);
 
-    virtual char *getConstraintLog(const Query& query)  {
-        // dummy
-        return nullptr;
+    virtual std::string getConstraintLog(const Query &query) {
+      // dummy
+      return {};
     }
 
     virtual void setCoreSolverTimeout(time::Span timeout) {};