Adds options to the check for customising the vector like classes the check will work on and the range-for types supported. Enables you to specify classes with methods that aren't named `push_back, emplace_back, reserve and size`
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Comment Actions
Thanks for the patch. May I know the motivation of this patch? Personally, I'd be conservative of exposing too many options.
Comment Actions
I was using custom classes with a different naming convention which was not being picked up by this check. Right now this check is only good for classes that mimick the stl conventions.