diff options
Diffstat (limited to 'lib/Core/Executor.cpp')
-rw-r--r-- | lib/Core/Executor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Core/Executor.cpp b/lib/Core/Executor.cpp index 934fa43e..b10a8850 100644 --- a/lib/Core/Executor.cpp +++ b/lib/Core/Executor.cpp @@ -445,10 +445,10 @@ Executor::Executor(LLVMContext &ctx, const InterpreterOptions &opts, const time::Span maxTime{MaxTime}; if (maxTime) timers.add( - std::move(std::make_unique<Timer>(maxTime, [&]{ + std::make_unique<Timer>(maxTime, [&]{ klee_message("HaltTimer invoked"); setHaltExecution(true); - }))); + })); coreSolverTimeout = time::Span{MaxCoreSolverTime}; if (coreSolverTimeout) UseForkedCoreSolver = true; |