diff options
author | Brad King <brad.king@kitware.com> | 2019-01-22 14:38:24 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2019-01-22 14:38:30 (GMT) |
commit | 4b017d579d00f1d4d032eda7e179f57bdd1da080 (patch) | |
tree | 4095545154c8cf2454319028c3763b480ac39e4a /Source/CTest | |
parent | cb7fbf1dbbcc88fc7701250db5c3ccdf0ab7396e (diff) | |
parent | 5ff7fb592e5b9c5a6a0f05055a2bde5623e8cc54 (diff) | |
download | CMake-4b017d579d00f1d4d032eda7e179f57bdd1da080.zip CMake-4b017d579d00f1d4d032eda7e179f57bdd1da080.tar.gz CMake-4b017d579d00f1d4d032eda7e179f57bdd1da080.tar.bz2 |
Merge topic 'Wcomma'
5ff7fb592e Fixed all but one clang -Wcomma warning
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !2828
Diffstat (limited to 'Source/CTest')
-rw-r--r-- | Source/CTest/cmCTestCVS.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/CTest/cmCTestCVS.cxx b/Source/CTest/cmCTestCVS.cxx index 4fb3273..6e1ada1 100644 --- a/Source/CTest/cmCTestCVS.cxx +++ b/Source/CTest/cmCTestCVS.cxx @@ -111,8 +111,8 @@ public: , Revisions(revs) , Section(SectionHeader) { - this->SetLog(&cvs->Log, prefix), - this->RegexRevision.compile("^revision +([^ ]*) *$"); + this->SetLog(&cvs->Log, prefix); + this->RegexRevision.compile("^revision +([^ ]*) *$"); this->RegexBranches.compile("^branches: .*$"); this->RegexPerson.compile("^date: +([^;]+); +author: +([^;]+);"); } |