astyle formatting

This commit is contained in:
Daniel Marjamäki 2011-03-06 21:15:58 +01:00
parent f53ff27b71
commit 80235b0d53
1 changed files with 1 additions and 1 deletions

View File

@ -307,7 +307,7 @@ static bool isFallThroughComment(std::string comment)
{
// convert comment to lower case without whitespace
std::transform(comment.begin(), comment.end(), comment.begin(), ::tolower);
for (std::string::iterator i = comment.begin(); i != comment.end(); )
for (std::string::iterator i = comment.begin(); i != comment.end();)
{
if (::isspace(static_cast<unsigned char>(*i)))
comment.erase(i);