diff options
author | Nikolai Kosjar <nikolai.kosjar@qt.io> | 2019-10-31 16:03:18 +0100 |
---|---|---|
committer | Nikolai Kosjar <nikolai.kosjar@qt.io> | 2019-11-01 09:21:29 +0000 |
commit | d337d03ce1b8c0bcd76eaf6a6defcd717490d78a (patch) | |
tree | 00c1902f774dc47961e24be923b1469b098fdab2 /src/plugins/cppeditor/cppdocumentationcommenthelper.cpp | |
parent | d1912784c82d0012a86cc1bc8a9303d879d7e4c0 (diff) | |
download | qt-creator-d337d03ce1b8c0bcd76eaf6a6defcd717490d78a.tar.gz |
CppEditor: Simplify
bugprone-branch-clone
readability-simplify-boolean-expr
Change-Id: Id30a155e224370713d23b4b534fb82f5e630f36c
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'src/plugins/cppeditor/cppdocumentationcommenthelper.cpp')
-rw-r--r-- | src/plugins/cppeditor/cppdocumentationcommenthelper.cpp | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/plugins/cppeditor/cppdocumentationcommenthelper.cpp b/src/plugins/cppeditor/cppdocumentationcommenthelper.cpp index 65c3dc9769..bb656d1900 100644 --- a/src/plugins/cppeditor/cppdocumentationcommenthelper.cpp +++ b/src/plugins/cppeditor/cppdocumentationcommenthelper.cpp @@ -88,10 +88,7 @@ bool isPreviousLineCppStyleComment(const QTextCursor &cursor) return false; const QString text = actual.text().trimmed(); - if (text.startsWith(QLatin1String("///")) || text.startsWith(QLatin1String("//!"))) - return true; - - return false; + return text.startsWith(QLatin1String("///")) || text.startsWith(QLatin1String("//!")); } /// Check if next line is a CppStyle Doxygen Comment @@ -106,10 +103,7 @@ bool isNextLineCppStyleComment(const QTextCursor &cursor) return false; const QString text = actual.text().trimmed(); - if (text.startsWith(QLatin1String("///")) || text.startsWith(QLatin1String("//!"))) - return true; - - return false; + return text.startsWith(QLatin1String("///")) || text.startsWith(QLatin1String("//!")); } bool isCppStyleContinuation(const QTextCursor& cursor) |