[clang-tidy][NFC] Test commit. Add missing comma.

llvm-svn: 353523
This commit is contained in:
Yitzhak Mandelbaum 2019-02-08 14:57:22 +00:00
parent 0f2debb1c2
commit 01d6bfc94d
1 changed files with 2 additions and 2 deletions

View File

@ -22,8 +22,8 @@ namespace readability {
// Finds the location of the qualifying `const` token in the `FunctionDecl`'s
// return type. Returns `None` when the return type is not `const`-qualified or
// `const` does not appear in `Def`'s source like when the type is an alias or a
// macro.
// `const` does not appear in `Def`'s source like, when the type is an alias or
// a macro.
static llvm::Optional<Token>
findConstToRemove(const FunctionDecl *Def,
const MatchFinder::MatchResult &Result) {