diff options
author | Martin Nowack <m.nowack@imperial.ac.uk> | 2018-10-18 14:22:26 +0100 |
---|---|---|
committer | Cristian Cadar <c.cadar@imperial.ac.uk> | 2018-10-23 18:53:46 +0300 |
commit | 6f8acb87b332d77d76ad81d56ab7bcf1125afcf3 (patch) | |
tree | 6e1b8a9a9ac6f17035089c2927c6faced766e37e /include | |
parent | bcd0cf245e9638a5f39c9340a28313dc6a3814c4 (diff) | |
download | klee-6f8acb87b332d77d76ad81d56ab7bcf1125afcf3.tar.gz |
Move unrelated function from ReadExpr class
Diffstat (limited to 'include')
-rw-r--r-- | include/klee/Expr.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/klee/Expr.h b/include/klee/Expr.h index 8eccdf11..212053b4 100644 --- a/include/klee/Expr.h +++ b/include/klee/Expr.h @@ -579,8 +579,6 @@ public: } static ref<Expr> create(const UpdateList &updates, ref<Expr> i); - static ref<Expr> extendRead(const UpdateList &updates, ref<Expr> i, - Expr::Width w); Width getWidth() const { assert(updates.root); return updates.root->getRange(); } Kind getKind() const { return Read; } |