Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
clang-tools-extra/clangd/Preamble.cpp | ||
---|---|---|
579 | any reason not calling collectPragmaMarksCallback just like the https://reviews.llvm.org/D146028 for macros? is it for simplicity? The pragma mark might be simple enough to parse ourselves, but it doesn't handle well for some trivial/corner cases like (well we probably don't care about these cases) #pragma mark \ abc |
clang-tools-extra/clangd/Preamble.cpp | ||
---|---|---|
579 | yeah it was for not running it unnecessarily, but you're right I guess it's not worth the discrepancy. using collectPragmaMarksCallback instead. |
any reason not calling collectPragmaMarksCallback just like the https://reviews.llvm.org/D146028 for macros? is it for simplicity?
The pragma mark might be simple enough to parse ourselves, but it doesn't handle well for some trivial/corner cases like (well we probably don't care about these cases)