From af7594521cd133d438ac494716798d04bcc52b6e Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Thu, 4 Jun 2009 02:09:03 +0000 Subject: TimingSolver shouldn't need a vtable. git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@72833 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Core/TimingSolver.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/Core') 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 &objects, std::vector< std::vector > &result); - virtual std::pair< ref, ref > + std::pair< ref, ref > getRange(const ExecutionState&, ref query); }; -- cgit 1.4.1