diff --git a/src/Binder/BoundExpressions/BoundExpression.hpp b/src/Binder/BoundExpressions/BoundExpression.hpp index 4897391..3f7ffd7 100644 --- a/src/Binder/BoundExpressions/BoundExpression.hpp +++ b/src/Binder/BoundExpressions/BoundExpression.hpp @@ -454,7 +454,7 @@ namespace Porygon::Binder { void GetTreeString(std::stringstream& stream, size_t indents) const final{ for (size_t i = 0; i < indents; i++) stream << "\t"; - stream << "NumericalTable" << " (" << GetType()->ToString() << ")" << endl; + stream << "NumericalTable" << " (" << GetType()->ToString() << ")"; for (auto _expression : _expressions){ stream << endl; _expression->GetTreeString(stream, indents + 1);