summaryrefslogtreecommitdiffstats
path: root/clang-tools-extra/clang-tidy
diff options
context:
space:
mode:
authorYitzhak Mandelbaum <yitzhakm@google.com>2019-02-08 14:57:22 +0000
committerYitzhak Mandelbaum <yitzhakm@google.com>2019-02-08 14:57:22 +0000
commit01d6bfc94da5527e087e6443be39064fad66a490 (patch)
treec666c783b68945028f818e108c38a2edcf0dc14b /clang-tools-extra/clang-tidy
parent0f2debb1c2a7fd94e3ae243ce8a88cf44457d4a1 (diff)
downloadbcm5719-llvm-01d6bfc94da5527e087e6443be39064fad66a490.tar.gz
bcm5719-llvm-01d6bfc94da5527e087e6443be39064fad66a490.zip
[clang-tidy][NFC] Test commit. Add missing comma.
llvm-svn: 353523
Diffstat (limited to 'clang-tools-extra/clang-tidy')
-rw-r--r--clang-tools-extra/clang-tidy/readability/ConstReturnTypeCheck.cpp4
1 files 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 9d936d8a866..a6fccd2b591 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<Token>
findConstToRemove(const FunctionDecl *Def,
const MatchFinder::MatchResult &Result) {
OpenPOWER on IntegriCloud