Open cjdb opened 11 months ago
@llvm/issue-subscribers-clang-tidy
Author: Christopher Di Bella (cjdb)
Hi!
This issue may be a good introductory issue for people new to working on LLVM. If you would like to work on this issue, your first steps are:
test/
create fine-grained testing targets, so you can e.g. use make check-clang-ast
to only run Clang's AST tests.git clang-format HEAD~1
to format your changes.If you have any further questions about this issue, don't hesitate to ask via a comment in the thread below.
@llvm/issue-subscribers-good-first-issue
Author: Christopher Di Bella (cjdb)
@cjdb Can you please elaborate on the specific requirement?
@cjdb Can you please elaborate on the specific requirement?
Thanks for your interest! Since you're already assigned #75688, I am going to assign this to @maxjtwelftree instead. Having said that, elaborating is still a good idea, so thank you for asking.
bugprone-dangling-handle
detects basic_string_view
by default, but not other view types like span
, mdspan
, and the range adaptors found in std::ranges
. Since these all have the same problem, bugprone-dangling-handle
should look at them by default too.
Thank you for assigning me @cjdb excited to contribute.
In addition to string_view types,
std::span
,std::ranges::subrange
, and all standard library view types should be added.