Fixes trailing endline in numerical table to string
This commit is contained in:
parent
da4258506e
commit
1235e8893f
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue