diff options
author | Sean McBride <sean@rogue-research.com> | 2019-01-12 01:48:19 (GMT) |
---|---|---|
committer | Sean McBride <sean@rogue-research.com> | 2019-01-12 01:48:19 (GMT) |
commit | 5ff7fb592e5b9c5a6a0f05055a2bde5623e8cc54 (patch) | |
tree | 688fa13ec49befb499cbc95ad78f85d701aebdee /Source/CTest/cmCTestCVS.cxx | |
parent | 5a283b79e5fe1739142cc513a9a701855849b2f8 (diff) | |
download | CMake-5ff7fb592e5b9c5a6a0f05055a2bde5623e8cc54.zip CMake-5ff7fb592e5b9c5a6a0f05055a2bde5623e8cc54.tar.gz CMake-5ff7fb592e5b9c5a6a0f05055a2bde5623e8cc54.tar.bz2 |
Fixed all but one clang -Wcomma warning
Diffstat (limited to 'Source/CTest/cmCTestCVS.cxx')
-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: +([^;]+);"); } |