removed dereferencing pointers when outputing to

stdout because i wanted the option of seeing
wethere a pointer was null or not
This commit is contained in:
Karma Riuk
2025-07-14 20:14:03 +02:00
parent 34e4bfe9c9
commit 870567ec6b

View File

@@ -14,10 +14,6 @@ namespace ast {
return os << n.str(); return os << n.str();
} }
inline std::ostream& operator<<(std::ostream& os, const node* n) {
return os << n->str();
}
struct statement : node {}; struct statement : node {};
struct expression : node {}; struct expression : node {};