From da5d238b5a78b54f89728132d71cfa6f8be16d21 Mon Sep 17 00:00:00 2001 From: Martin Nowack Date: Mon, 1 Apr 2019 12:20:32 +0100 Subject: Use `unique_ptr` for solver in timing solver --- lib/Core/Executor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/Core/Executor.cpp') 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); -- cgit 1.4.1