From 41ee94afe029c891e8960141ba71a3451a42d6ae Mon Sep 17 00:00:00 2001 From: Martin Nowack Date: Mon, 4 Nov 2019 16:42:51 +0000 Subject: Use `ref<>` for MemoryObject handling This uses the `ref<>`-based memory handling of MemoryObjects. This makes it explicit that references are held in: - ExecutionState::symbolics - ObjectState --- include/klee/ExecutionState.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/klee/ExecutionState.h b/include/klee/ExecutionState.h index 95808be1..e647d0ab 100644 --- a/include/klee/ExecutionState.h +++ b/include/klee/ExecutionState.h @@ -132,7 +132,7 @@ public: /// @brief Ordered list of symbolics: used to generate test cases. // // FIXME: Move to a shared list structure (not critical). - std::vector > symbolics; + std::vector, const Array *>> symbolics; /// @brief Set of used array names for this state. Used to avoid collisions. std::set arrayNames; -- cgit 1.4.1