From: John Benediktsson Date: Tue, 7 Apr 2020 18:40:04 +0000 (-0700) Subject: vm: lost a character somehow. X-Git-Tag: 0.99~3342 X-Git-Url: https://gitweb.factorcode.org/gitweb.cgi?p=factor.git;a=commitdiff_plain;h=e219aad7e5bb63068886b2c0384b7dd24d804c9a vm: lost a character somehow. --- 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_; }