Skip to content

Revert "GIT_SILENT: minor qstring optimization"

This reverts commit f96deb39.

This was anti-optimization.

  • QStringLiteral is a QString created at build time. Initialization of QString with it has no overhead.
  • QLatin1String is 8 bit C string wrapper which needs run-time conversion to 16 bit encoding used in QString.

References:

For some reason this was commited without review and with GIT_SILENT.

Merge request reports