about summary refs log tree commit diff homepage
path: root/include/klee/util/ExprHashMap.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/klee/util/ExprHashMap.h')
-rw-r--r--include/klee/util/ExprHashMap.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/klee/util/ExprHashMap.h b/include/klee/util/ExprHashMap.h
index d9f95bff..d2e6cb1a 100644
--- a/include/klee/util/ExprHashMap.h
+++ b/include/klee/util/ExprHashMap.h
@@ -19,7 +19,7 @@ namespace klee {
   namespace util {
     struct ExprHash  {
       unsigned operator()(const ref<Expr> e) const {
-        return e.hash();
+        return e->hash();
       }
     };