File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ StatementMatcher makeCastSequenceMatcher(llvm::ArrayRef<StringRef> NameList) {
53
53
unless (hasImplicitDestinationType (
54
54
qualType (matchers::matchesAnyListedTypeName (NameList)))));
55
55
56
- auto IsOrHasDescendant = [](auto InnerMatcher) {
56
+ auto IsOrHasDescendant = [](const auto & InnerMatcher) {
57
57
return anyOf (InnerMatcher, hasDescendant (InnerMatcher));
58
58
};
59
59
Original file line number Diff line number Diff line change @@ -329,6 +329,11 @@ Changes in existing checks
329
329
<clang-tidy/checks/modernize/use-designated-initializers>` check to
330
330
suggest using designated initializers for aliased aggregate types.
331
331
332
+ - Improved :doc: `modernize-use-nullptr
333
+ <clang-tidy/checks/modernize/use-nullptr>` check by fixing a crash
334
+ on Windows when the check was enabled with a 32-bit :program: `clang-tidy `
335
+ binary.
336
+
332
337
- Improved :doc: `modernize-use-std-format
333
338
<clang-tidy/checks/modernize/use-std-format>` check to correctly match
334
339
when the format string is converted to a different type by an implicit
You can’t perform that action at this time.
0 commit comments