Removed newline from divideBySizeofError message

This commit is contained in:
PKEuS 2014-08-08 09:59:55 +02:00
parent 5c238692e6
commit 5ddee75b5d
1 changed files with 1 additions and 1 deletions

View File

@ -212,7 +212,7 @@ void CheckSizeof::sizeofForPointerError(const Token *tok, const std::string &var
void CheckSizeof::divideBySizeofError(const Token *tok, const std::string &memfunc)
{
reportError(tok, Severity::warning, "sizeofDivisionMemfunc",
"Division by result of sizeof(). " + memfunc + "() expects a size in bytes, did you intend to multiply instead?\n");
"Division by result of sizeof(). " + memfunc + "() expects a size in bytes, did you intend to multiply instead?");
}
//-----------------------------------------------------------------------------