From e219aad7e5bb63068886b2c0384b7dd24d804c9a Mon Sep 17 00:00:00 2001 From: John Benediktsson Date: Tue, 7 Apr 2020 11:40:04 -0700 Subject: [PATCH] vm: lost a character somehow. --- vm/tagged.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vm/tagged.hpp b/vm/tagged.hpp index c980ddc025..0af2130fa0 100644 --- a/vm/tagged.hpp +++ b/vm/tagged.hpp @@ -41,7 +41,7 @@ template struct tagged { } Type* operator->() const { return untagged(); } - cell* operator&() const { return value(); } + cell* operator&() const { return &value(); } bool operator==(const tagged& x) { return value_ == x.value_; } bool operator!=(const tagged& x) { return value_ != x.value_; } -- 2.34.1