summaryrefslogtreecommitdiff
path: root/Source/cmArgumentParser.cxx
Commit message (Collapse)AuthorAgeFilesLines
* cmArgumentParser: Fix -Wcomma warningBrad King2019-04-111-1/+1
| | | | | | | | | | | | | Clang `-Wcomma` warns: ``` Source/cmArgumentParser.cxx:58:42: warning: possible misuse of comma operator this->CurrentList = (val.emplace_back(), &val.back()); ^ ``` This was introduced by commit 4359fe133b (Introduce cmArgumentParser, 2019-03-23). Suppress it with the suggested cast.
* Introduce cmArgumentParserRegina Pfeifer2019-04-041-0/+93