Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Comment Actions
thanks, lgtm!
clang-tools-extra/clangd/InlayHints.cpp | ||
---|---|---|
359–360 | can we document why we need to policies here, probably something like: We want to suppress default template arguments and print canonical types, unfortunately they're conflicting policies hence we can't have both. For regular types, suppressing default template arguments is more important, whereas printing canonical types is crucial for structured bindings. Therefore we use 2 separate policies. |
can we document why we need to policies here, probably something like: