Skip to content
Snippets Groups Projects
Commit 053816c4 authored by Mathias Hasselmann's avatar Mathias Hasselmann Committed by Eike Ziller
Browse files

Permit TODO comments in Google C++ style


Google's C++ Code Guide requires the author's username in TODO comments:

  // TODO(hasselmm): Fix this mess

Change-Id: Ic003c7a1bf22e43a0882284f07017fb25d031c21
Reviewed-by: default avatarEike Ziller <eike.ziller@nokia.com>
parent 17cf48f5
No related branches found
No related tags found
No related merge requests found
...@@ -58,7 +58,8 @@ bool LineParser::isKeywordSeparator(const QChar &ch) ...@@ -58,7 +58,8 @@ bool LineParser::isKeywordSeparator(const QChar &ch)
return ch.isSpace() return ch.isSpace()
|| (ch == QLatin1Char(':')) || (ch == QLatin1Char(':'))
|| (ch == QLatin1Char('/')) || (ch == QLatin1Char('/'))
|| (ch == QLatin1Char('*')); || (ch == QLatin1Char('*'))
|| (ch == QLatin1Char('('));
} }
LineParser::KeywordEntryCandidates LineParser::findKeywordEntryCandidates(const QString &line) LineParser::KeywordEntryCandidates LineParser::findKeywordEntryCandidates(const QString &line)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment