ymandel updated this revision to Diff 402984.
ymandel added a comment.
Herald added a subscriber: JDevlieghere.
fix bad previous snapshot
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D116377/new/
https://reviews.llvm.org/D116377
Files:
clang/inc
ymandel updated this revision to Diff 289623.
ymandel added a comment.
Herald added a subscriber: JDevlieghere.
fix diff base; make small clang-tidy suggested change
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D87031/new/
https://reviews.llvm.org/
ymandel updated this revision to Diff 200802.
ymandel removed a subscriber: dexonsmith.
ymandel added a comment.
Replace previous diff which had the wrong base.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D61386/new/
https://reviews.llvm.org/D6138
This revision was automatically updated to reflect the committed changes.
Closed by commit rL361418: [clang-tidy] Add support for writing a check as a
Transformer rewrite rule. (authored by ymandel, committed by ).
Changed prior to commit:
https://reviews.llvm.org/D61386?vs=200802&id=200804#toc
ymandel marked 2 inline comments as done.
ymandel added inline comments.
Comment at: clang-tools-extra/clang-tidy/utils/TransformerClangTidyCheck.cpp:46
+
+ StringRef Message = "no explanation";
+ if (Case.Explanation) {
ilya-biryukov wrote:
> ymandel wrote:
>