summaryrefslogtreecommitdiffstats
path: root/Source/cmDocumentationFormatter.cxx
diff options
context:
space:
mode:
authorDaniel Pfeifer <daniel@pfeifer-mail.de>2016-12-10 15:55:49 (GMT)
committerBrad King <brad.king@kitware.com>2016-12-12 19:04:16 (GMT)
commitb932cd429800bb24d71e1d60f954fe4df2d1eb5c (patch)
tree84d42b0bd94f5dc5085ea76fb13ec1b8a4dd0f1c /Source/cmDocumentationFormatter.cxx
parent88da3d68c2d205688762fd6a7e84fd730533e844 (diff)
downloadCMake-b932cd429800bb24d71e1d60f954fe4df2d1eb5c.zip
CMake-b932cd429800bb24d71e1d60f954fe4df2d1eb5c.tar.gz
CMake-b932cd429800bb24d71e1d60f954fe4df2d1eb5c.tar.bz2
clang-tidy: apply misc-redundant-expression fixes
Diffstat (limited to 'Source/cmDocumentationFormatter.cxx')
-rw-r--r--Source/cmDocumentationFormatter.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmDocumentationFormatter.cxx b/Source/cmDocumentationFormatter.cxx
index 21a5209..0018263 100644
--- a/Source/cmDocumentationFormatter.cxx
+++ b/Source/cmDocumentationFormatter.cxx
@@ -156,7 +156,7 @@ void cmDocumentationFormatter::PrintColumn(std::ostream& os, const char* text)
// Move to beginning of next word. Skip over whitespace.
l = r;
- while (*l && (*l == ' ')) {
+ while (*l == ' ') {
++l;
}
}