Remove extra space from error message.

This commit is contained in:
Kimmo Varis 2010-11-27 20:54:02 +02:00
parent 2c3f9a9dce
commit c9c6de24a6

View File

@ -97,7 +97,7 @@ void CheckPostfixOperator::postfixOperator()
void CheckPostfixOperator::postfixOperatorError(const Token *tok) void CheckPostfixOperator::postfixOperatorError(const Token *tok)
{ {
reportError(tok, Severity::performance, "postfixOperator", reportError(tok, Severity::performance, "postfixOperator",
"Prefer prefix ++/-- operators for non-primitive types.\n " "Prefer prefix ++/-- operators for non-primitive types.\n"
"Pre-increment/decrement can be more efficient than " "Pre-increment/decrement can be more efficient than "
"post-increment/decrement. Post-increment/decrement usually " "post-increment/decrement. Post-increment/decrement usually "
"involves keeping a copy of the previous value around and " "involves keeping a copy of the previous value around and "