vm: quick fix for compilation warning.

master
John Benediktsson 2020-04-07 11:38:48 -07:00
parent f5d0b8bfb0
commit 5c98ba78cb
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_; }