diff options
| author | Martin Nowack <m.nowack@imperial.ac.uk> | 2019-04-01 12:20:32 +0100 |
|---|---|---|
| committer | Cristian Cadar <c.cadar@imperial.ac.uk> | 2020-07-01 15:52:40 +0100 |
| commit | da5d238b5a78b54f89728132d71cfa6f8be16d21 (patch) | |
| tree | 888f532812d45d6fbc4d9d25a9c29fa37633b493 /lib/Core/Executor.cpp | |
| parent | a1b73df93e5a2fac4a7ac87fb1753c4eb518c8c0 (diff) | |
| download | klee-da5d238b5a78b54f89728132d71cfa6f8be16d21.tar.gz | |
Use `unique_ptr` for solver in timing solver
Diffstat (limited to 'lib/Core/Executor.cpp')
| -rw-r--r-- | lib/Core/Executor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Core/Executor.cpp b/lib/Core/Executor.cpp index 39de6e8d..ceefc710 100644 --- a/lib/Core/Executor.cpp +++ b/lib/Core/Executor.cpp @@ -4058,7 +4058,7 @@ void Executor::doImpliedValueConcretization(ExecutionState &state, abort(); // FIXME: Broken until we sort out how to do the write back. if (DebugCheckForImpliedValues) - ImpliedValue::checkForImpliedValues(solver->solver, e, value); + ImpliedValue::checkForImpliedValues(solver->solver.get(), e, value); ImpliedValueList results; ImpliedValue::getImpliedValues(e, value, results); |
