Skip to content
Snippets Groups Projects
Commit d510aaa0 authored by Roberto Raggi's avatar Roberto Raggi Committed by Thorbjørn Lindeijer
Browse files

Fixed problem with nested templates in function declaration completion


Wasn't using a space to separate the closing angular brackets.

Task-number: QTCREATORBUG-547
Reviewed-by: default avatarThorbjørn Lindeijer <thorbjorn.lindeijer@nokia.com>
parent 0fdb3beb
No related branches found
No related tags found
No related merge requests found
......@@ -90,6 +90,8 @@ void NamePrettyPrinter::visit(TemplateNameId *name)
else
_name += arg;
}
if (! _name.isEmpty() && _name.at(_name.length() - 1) == '>')
_name += QLatin1Char(' ');
_name += QLatin1Char('>');
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment