- Suppress a lot of -Wtautological-compare warning
- Speed up file build a little bit
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
clang-tools-extra/clangd/CompileCommands.cpp | ||
---|---|---|
478 | gcc warns about casting away "const" here. |
clang-tools-extra/clangd/CompileCommands.cpp | ||
---|---|---|
478 |
Thanks for the report. Fixed in 4f30a5269696. |
gcc warns about casting away "const" here.
Would it break anything to simply change the type of AliasArgs in the AliasTable to "const char *" and skip this void* cast?