From d5128e827ef081a8ff42ad9503f04e32fb95fcf1 Mon Sep 17 00:00:00 2001
From: johti17 <johti17@tlvm-4-1-1.ad.liu.se>
Date: Tue, 31 Oct 2023 17:36:12 +0100
Subject: [PATCH] Removed tabs and clean up ws in ast

---
 lab3-4/ast.cc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lab3-4/ast.cc b/lab3-4/ast.cc
index d156936..d62488c 100644
--- a/lab3-4/ast.cc
+++ b/lab3-4/ast.cc
@@ -241,7 +241,7 @@ void BinaryOperation::xprint(ostream& o, const char *cls)
     endChild(o);
 }
 
-void Plus::print(ostream& o) { xprint(o, "Plus"); } // 
+void Plus::print(ostream& o) { xprint(o, "Plus"); } //
 void Minus::print(ostream& o) { xprint(o, "Minus"); }
 void Times::print(ostream& o) { xprint(o, "Times"); }
 void Divide::print(ostream& o) {xprint(o, "Divide"); }
@@ -328,7 +328,7 @@ void BinaryCondition::xprint(ostream& o, const char *cls)
 }
 
 void And::print(ostream& o) { xprint(o, "And"); }
-void Or::print(ostream& o) { xprint(o, "Or"); } // 
+void Or::print(ostream& o) { xprint(o, "Or"); } //
 
 void Not::print(ostream& o)
 {
-- 
GitLab