diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/klee/ExecutionState.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/include/klee/ExecutionState.h b/include/klee/ExecutionState.h index 824fbed5..97b700c1 100644 --- a/include/klee/ExecutionState.h +++ b/include/klee/ExecutionState.h @@ -72,9 +72,6 @@ private: public: bool fakeState; - // Are we currently underconstrained? Hack: value is size to make fake - // objects. - unsigned underConstrained; unsigned depth; // pc - pointer to current instruction stream @@ -113,7 +110,7 @@ public: void removeFnAlias(std::string fn); private: - ExecutionState() : fakeState(false), underConstrained(0), ptreeNode(0) {} + ExecutionState() : fakeState(false), ptreeNode(0) {} public: ExecutionState(KFunction *kf); |