Currently both clangd and clang-tidy makes use of this mechanism so
putting it into tooling so that all tools can make use of it.
Details
Details
- Reviewers
ilya-biryukov sammccall - Commits
- rGd0fae09cb63d: Merging r351531: --------------------------------------------------------------…
rG2eff821bbdd5: [tooling] Add a new argument adjuster for deleting plugin related command line…
rL351961: Merging r351531:
rL351531: [tooling] Add a new argument adjuster for deleting plugin related command line…
rC351531: [tooling] Add a new argument adjuster for deleting plugin related command line…
Diff Detail
Diff Detail
- Repository
- rC Clang
Event Timeline
include/clang/Tooling/ArgumentsAdjusters.h | ||
---|---|---|
73 | Maybe put the function before combineAdjusters? | |
75 | Maybe drop "clang" from the name? `getStripPluginsAdjuster()? | |
lib/Tooling/ArgumentsAdjusters.cpp | ||
111 | remove the comment? we already have one in the header |
Maybe put the function before combineAdjusters?
The latter is a function that works on two adjusters, therefore a bit different from the rest, which are adjusters themselves.