From 870567ec6b87b9c183806aa3c5ee2c28fe636878 Mon Sep 17 00:00:00 2001 From: Karma Riuk Date: Mon, 14 Jul 2025 20:14:03 +0200 Subject: [PATCH] removed dereferencing pointers when outputing to stdout because i wanted the option of seeing wethere a pointer was null or not --- src/ast/ast.hpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/ast/ast.hpp b/src/ast/ast.hpp index e3d7b58..eff4c33 100644 --- a/src/ast/ast.hpp +++ b/src/ast/ast.hpp @@ -14,10 +14,6 @@ namespace ast { return os << n.str(); } - inline std::ostream& operator<<(std::ostream& os, const node* n) { - return os << n->str(); - } - struct statement : node {}; struct expression : node {};