Fix Key Identifier and Value identifier in generic for loop using same type for debug string

This commit is contained in:
Deukhoofd 2019-09-07 15:38:03 +02:00
parent 8f078e580e
commit 85936f3d68
Signed by: Deukhoofd
GPG Key ID: ADF2E9256009EDCE
1 changed files with 1 additions and 1 deletions

View File

@ -438,7 +438,7 @@ namespace Porygon::Binder {
DrawIndents(stream, indents);
stream << "Key: " << _keyIdentifier->GetIdentifier()->GetDebugString() << " (" << _keyIdentifier->GetType()->ToString() << ")" << endl;
DrawIndents(stream, indents);
stream << "Value: " << _valueIdentifier->GetIdentifier()->GetDebugString() << " (" << _keyIdentifier->GetType()->ToString() << ")" << endl;
stream << "Value: " << _valueIdentifier->GetIdentifier()->GetDebugString() << " (" << _valueIdentifier->GetType()->ToString() << ")" << endl;
DrawIndents(stream, indents);
stream << "Iterator:" << endl;
_iterator->GetTreeString(stream, indents + 1);