[clang-tools-extra] r353523 - [clang-tidy][NFC] Test commit. Add missing comma.
Yitzhak Mandelbaum via cfe-commits
cfe-commits at lists.llvm.org
Fri Feb 8 06:57:23 PST 2019
Author: ymandel
Date: Fri Feb 8 06:57:22 2019
New Revision: 353523
URL: http://llvm.org/viewvc/llvm-project?rev=353523&view=rev
Log:
[clang-tidy][NFC] Test commit. Add missing comma.
Modified:
clang-tools-extra/trunk/clang-tidy/readability/ConstReturnTypeCheck.cpp
Modified: clang-tools-extra/trunk/clang-tidy/readability/ConstReturnTypeCheck.cpp
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/clang-tidy/readability/ConstReturnTypeCheck.cpp?rev=353523&r1=353522&r2=353523&view=diff
==============================================================================
--- clang-tools-extra/trunk/clang-tidy/readability/ConstReturnTypeCheck.cpp (original)
+++ clang-tools-extra/trunk/clang-tidy/readability/ConstReturnTypeCheck.cpp Fri Feb 8 06:57:22 2019
@@ -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) {
More information about the cfe-commits
mailing list