vm: lost a character somehow.
parent
5c98ba78cb
commit
e219aad7e5
|
@ -41,7 +41,7 @@ template <typename Type> struct tagged {
|
||||||
}
|
}
|
||||||
|
|
||||||
Type* operator->() const { return untagged(); }
|
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_; }
|
||||||
bool operator!=(const tagged<Type>& x) { return value_ != x.value_; }
|
bool operator!=(const tagged<Type>& x) { return value_ != x.value_; }
|
||||||
|
|
Loading…
Reference in New Issue