Previously, we ran the prepare, even for the tweaks that are disabled.
Details
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM
Event Timeline
Comment Actions
Address comments.
clang-tools-extra/clangd/ClangdServer.h | ||
---|---|---|
136 ↗ | (On Diff #209216) | good catch, thanks! |
clang-tools-extra/clangd/ClangdServer.h | ||
---|---|---|
138 ↗ | (On Diff #209223) | the default value should reject hidden checks, for API users. The duplication is a bit sad |
clang-tools-extra/clangd/tool/ClangdMain.cpp | ||
535 ↗ | (On Diff #209223) | nit: -hidden-features |
536 ↗ | (On Diff #209223) | nit: seems clearer to write: if (hidden && !HiddenFeatures) return false; if (flag passed && !name matches flag) return false; return true |