diff options
author | Martin Nowack <martin_nowack@tu-dresden.de> | 2017-11-02 09:32:38 +0100 |
---|---|---|
committer | Cristian Cadar <c.cadar@imperial.ac.uk> | 2018-02-18 12:49:41 +0000 |
commit | 7a0e82382e1211ba316af72576fe9a5bbc760fa5 (patch) | |
tree | 9401f97ec4b1c3e49e11573f25f527fdec7831d4 /lib/Core/Memory.h | |
parent | 4989af217357a499f21f5bfc6ad897a435d72db1 (diff) | |
download | klee-7a0e82382e1211ba316af72576fe9a5bbc760fa5.tar.gz |
Make print function of ObjectState public and const
Diffstat (limited to 'lib/Core/Memory.h')
-rw-r--r-- | lib/Core/Memory.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Core/Memory.h b/lib/Core/Memory.h index 4e5c8734..3084cf32 100644 --- a/lib/Core/Memory.h +++ b/lib/Core/Memory.h @@ -205,6 +205,8 @@ public: void write32(unsigned offset, uint32_t value); void write64(unsigned offset, uint64_t value); + void print() const; + private: const UpdateList &getUpdates() const; @@ -231,7 +233,6 @@ private: void markByteUnflushed(unsigned offset); void setKnownSymbolic(unsigned offset, Expr *value); - void print(); ArrayCache *getArrayCache() const; }; |