Skip to content
Snippets Groups Projects
Commit d5128e82 authored by johti17's avatar johti17
Browse files

Removed tabs and clean up ws in ast

parent 8bc1e0b8
Branches
No related tags found
1 merge request!4Updates cpp 2023
......@@ -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)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment