Fixes trailing endline in numerical table to string

This commit is contained in:
Deukhoofd 2019-09-07 12:30:30 +02:00
parent da4258506e
commit 1235e8893f
Signed by: Deukhoofd
GPG Key ID: ADF2E9256009EDCE
1 changed files with 1 additions and 1 deletions

View File

@ -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);