diff options
author | Cristian Cadar <cristic@cs.stanford.edu> | 2009-05-28 05:29:24 +0000 |
---|---|---|
committer | Cristian Cadar <cristic@cs.stanford.edu> | 2009-05-28 05:29:24 +0000 |
commit | 4fa061a181f05c6c06de0185bee7f322b5ef0db9 (patch) | |
tree | 45d45791f77b599429e91dee5cdf56e7ba331f3b /include | |
parent | d5e3206198cb3c7489a2ba817dfdd4fe6587e143 (diff) | |
download | klee-4fa061a181f05c6c06de0185bee7f322b5ef0db9.tar.gz |
Small changes to silence some gcc warnings.
git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@72518 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/klee/Solver.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/klee/Solver.h b/include/klee/Solver.h index 2d4fa044..a053050d 100644 --- a/include/klee/Solver.h +++ b/include/klee/Solver.h @@ -65,7 +65,7 @@ namespace klee { public: Solver(SolverImpl *_impl) : impl(_impl) {}; - ~Solver(); + virtual ~Solver(); /// evaluate - Determine the full validity of an expression in particular /// state. @@ -158,6 +158,8 @@ namespace klee { /// \param useForkedSTP - Whether STP should be run in a separate process /// (required for using timeouts). STPSolver(bool useForkedSTP); + + /// getConstraintLog - Return the constraint log for the given state in CVC /// format. |