diff options
author | Frank Busse <bb0xfb@gmail.com> | 2019-09-11 21:19:24 +0100 |
---|---|---|
committer | MartinNowack <martin.nowack@gmail.com> | 2019-09-20 15:45:39 +0100 |
commit | d773e3f762affd7189d34fbd6d1e7e0e5af3f712 (patch) | |
tree | 1a3b6aff102055d84caefdc2ccf758aaefb1b8b4 /lib/Core/Executor.h | |
parent | 6b2c98ba795a1edf81647482ae9f2560397f56bb (diff) | |
download | klee-d773e3f762affd7189d34fbd6d1e7e0e5af3f712.tar.gz |
refactor PTree: remove split(), add attach() method
Diffstat (limited to 'lib/Core/Executor.h')
-rw-r--r-- | lib/Core/Executor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Core/Executor.h b/lib/Core/Executor.h index 851a52ec..c3111713 100644 --- a/lib/Core/Executor.h +++ b/lib/Core/Executor.h @@ -136,7 +136,7 @@ private: TreeStreamWriter *pathWriter, *symPathWriter; SpecialFunctionHandler *specialFunctionHandler; std::vector<TimerInfo*> timers; - PTree *processTree; + std::unique_ptr<PTree> processTree; /// Keeps track of all currently ongoing merges. /// An ongoing merge is a set of states which branched from a single state |