From Qt docs:
… multiple uses of the [
QString
] ‘+’ operator usually means multiple memory allocations. When concatenating n substrings, where n > 2, there can be as many as n - 1 calls to the memory allocator.
With this PR
… the ‘+’ will automatically be performed as the
QStringBuilder
‘%’ everywhere.
The change in the src/Makefile.qt.include
file does not justify submitting this PR into the main repo, IMHO.