vm: lost a character somehow.

master
John Benediktsson 2020-04-07 11:40:04 -07:00
parent 5c98ba78cb
commit e219aad7e5
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ template <typename Type> struct tagged {
}
Type* operator->() const { return untagged(); }
cell* operator&() const { return value(); }
cell* operator&() const { return &value(); }
bool operator==(const tagged<Type>& x) { return value_ == x.value_; }
bool operator!=(const tagged<Type>& x) { return value_ != x.value_; }