From 80235b0d535109810a8323a5495ca49b74c1638a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Sun, 6 Mar 2011 21:15:58 +0100 Subject: [PATCH] astyle formatting --- lib/preprocessor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/preprocessor.cpp b/lib/preprocessor.cpp index 7650039e9..0d153a9e3 100644 --- a/lib/preprocessor.cpp +++ b/lib/preprocessor.cpp @@ -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(*i))) comment.erase(i);