diff options
author | Julian Büning <julian.buening@rwth-aachen.de> | 2019-01-15 19:12:48 +0100 |
---|---|---|
committer | Cristian Cadar <c.cadar@imperial.ac.uk> | 2019-05-30 09:45:21 +0100 |
commit | 31f965a01fbf7fd6e8590395de2f59d1b224607c (patch) | |
tree | 63386cb97532b69bf3d8528d7a2e764d89d7ae7b /include | |
parent | 07581cb13d272a01adf7624ab84b6252fc7d525c (diff) | |
download | klee-31f965a01fbf7fd6e8590395de2f59d1b224607c.tar.gz |
ExecutionState: remove fnAliases
Diffstat (limited to 'include')
-rw-r--r-- | include/klee/ExecutionState.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/klee/ExecutionState.h b/include/klee/ExecutionState.h index 711cf1b3..066ba539 100644 --- a/include/klee/ExecutionState.h +++ b/include/klee/ExecutionState.h @@ -72,8 +72,6 @@ private: // unsupported, use copy constructor ExecutionState &operator=(const ExecutionState &); - std::map<std::string, std::string> fnAliases; - public: // Execution - Control Flow specific @@ -143,8 +141,6 @@ public: /// @brief Set of used array names for this state. Used to avoid collisions. std::set<std::string> arrayNames; - std::string getFnAlias(std::string fn); - // The objects handling the klee_open_merge calls this state ran through std::vector<ref<MergeHandler> > openMergeStack; |