[PATCH] D140307: [clang-tidy] Match derived types in in modernize-loop-convert
Chris Cotter via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Thu Jan 5 17:15:20 PST 2023
ccotter marked 2 inline comments as done.
ccotter added inline comments.
================
Comment at: clang-tools-extra/clang-tidy/modernize/LoopConvertCheck.cpp:258
+ hasMethod(cxxMethodDecl(hasName("begin"), isConst())),
+ hasMethod(cxxMethodDecl(hasName("end"),
+ isConst())))))) // hasDeclaration
----------------
carlosgalvezp wrote:
> Replace tabs with spaces
Ah, I think this was before I figured out `arc diff` and was copy/pasting diff files around :/
Thanks for catching this.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D140307/new/
https://reviews.llvm.org/D140307
More information about the cfe-commits
mailing list