diff options
-rw-r--r-- | lib/Core/TimingSolver.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Core/TimingSolver.h b/lib/Core/TimingSolver.h index b92cfc32..1287c2f3 100644 --- a/lib/Core/TimingSolver.h +++ b/lib/Core/TimingSolver.h @@ -37,7 +37,7 @@ namespace klee { TimingSolver(Solver *_solver, STPSolver *_stpSolver, bool _simplifyExprs = true) : solver(_solver), stpSolver(_stpSolver), simplifyExprs(_simplifyExprs) {} - virtual ~TimingSolver() { + ~TimingSolver() { delete solver; } @@ -61,7 +61,7 @@ namespace klee { const std::vector<const Array*> &objects, std::vector< std::vector<unsigned char> > &result); - virtual std::pair< ref<Expr>, ref<Expr> > + std::pair< ref<Expr>, ref<Expr> > getRange(const ExecutionState&, ref<Expr> query); }; |