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
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ void CheckPostfixOperator::postfixOperator()
void CheckPostfixOperator::postfixOperatorError(const Token *tok)
{
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 "
"post-increment/decrement. Post-increment/decrement usually "
"involves keeping a copy of the previous value around and "