diff options
author | Cristian Cadar <c.cadar@imperial.ac.uk> | 2015-04-02 15:00:11 +0100 |
---|---|---|
committer | Cristian Cadar <c.cadar@imperial.ac.uk> | 2015-04-02 15:00:11 +0100 |
commit | 132214434400b49d3a8d0a33d65fda141433e28b (patch) | |
tree | 2ab2a4d87bfa182ad7bd2b4176231cbf01c12fc2 /include | |
parent | db655af90427e7c102108b14479130e07524f60e (diff) | |
download | klee-132214434400b49d3a8d0a33d65fda141433e28b.tar.gz |
Removed underConstrained field, which I believe was re-introduced by
mistake in the last cleanup commit.
Diffstat (limited to 'include')
-rw-r--r-- | include/klee/ExecutionState.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/include/klee/ExecutionState.h b/include/klee/ExecutionState.h index eddf3d4a..2c0a7ad3 100644 --- a/include/klee/ExecutionState.h +++ b/include/klee/ExecutionState.h @@ -73,10 +73,6 @@ private: std::map<std::string, std::string> fnAliases; public: - // Are we currently underconstrained? Hack: value is size to make fake - // objects. - unsigned underConstrained; - /// Execution - Control Flow specific /// @brief pointer to instruction to be executed next after the current @@ -154,7 +150,7 @@ public: void removeFnAlias(std::string fn); private: - ExecutionState() : underConstrained(0), fakeState(false), ptreeNode(0) {} + ExecutionState() : fakeState(false), ptreeNode(0) {} public: ExecutionState(KFunction *kf); |