Fixes trailing endline in numerical table to string
This commit is contained in:
@@ -454,7 +454,7 @@ namespace Porygon::Binder {
|
|||||||
void GetTreeString(std::stringstream& stream, size_t indents) const final{
|
void GetTreeString(std::stringstream& stream, size_t indents) const final{
|
||||||
for (size_t i = 0; i < indents; i++)
|
for (size_t i = 0; i < indents; i++)
|
||||||
stream << "\t";
|
stream << "\t";
|
||||||
stream << "NumericalTable" << " (" << GetType()->ToString() << ")" << endl;
|
stream << "NumericalTable" << " (" << GetType()->ToString() << ")";
|
||||||
for (auto _expression : _expressions){
|
for (auto _expression : _expressions){
|
||||||
stream << endl;
|
stream << endl;
|
||||||
_expression->GetTreeString(stream, indents + 1);
|
_expression->GetTreeString(stream, indents + 1);
|
||||||
|
|||||||
Reference in New Issue
Block a user