From 01d6bfc94da5527e087e6443be39064fad66a490 Mon Sep 17 00:00:00 2001 From: Yitzhak Mandelbaum Date: Fri, 8 Feb 2019 14:57:22 +0000 Subject: [PATCH] [clang-tidy][NFC] Test commit. Add missing comma. llvm-svn: 353523 --- .../clang-tidy/readability/ConstReturnTypeCheck.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clang-tools-extra/clang-tidy/readability/ConstReturnTypeCheck.cpp b/clang-tools-extra/clang-tidy/readability/ConstReturnTypeCheck.cpp index 9d936d8a866e..a6fccd2b591f 100644 --- a/clang-tools-extra/clang-tidy/readability/ConstReturnTypeCheck.cpp +++ b/clang-tools-extra/clang-tidy/readability/ConstReturnTypeCheck.cpp @@ -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 findConstToRemove(const FunctionDecl *Def, const MatchFinder::MatchResult &Result) {