Revert "improve abstraction for AssocList, fix bug in optional else (#315)" (#320)

This reverts commit bf6bb800c4.
This commit is contained in:
Dave Abrahams
2021-03-01 12:26:56 -05:00
committed by GitHub
parent 8b3bb7c5e9
commit f5300a84e5
55 changed files with 7431 additions and 293 deletions
@@ -314,11 +314,6 @@ void PrintValue(Value* val, std::ostream& out) {
}
}
auto operator<<(std::ostream& out, const Value& v) -> std::ostream& {
PrintValue((Value*)&v, out);
return out;
}
auto TypeEqual(Value* t1, Value* t2) -> bool {
if (t1->tag != t2->tag) {
return false;