Remove extra space char from begin of verbose message.

This commit is contained in:
Kimmo Varis 2010-11-29 20:27:31 +02:00
parent f467e3120e
commit 6bf0e7eb08
1 changed files with 1 additions and 1 deletions

View File

@ -914,7 +914,7 @@ void CheckStl::missingComparison()
void CheckStl::missingComparisonError(const Token *incrementToken1, const Token *incrementToken2)
{
std::ostringstream errmsg;
errmsg << "Missing bounds check for extra iterator increment in loop.\n "
errmsg << "Missing bounds check for extra iterator increment in loop.\n"
<< "The iterator incrementing is suspicious - it is incremented at line "
<< incrementToken1->linenr() << " and then at line " << incrementToken2->linenr()
<< " The loop might unintentionally skip an element in the container. "