Details
- Reviewers
sammccall Jim - Commits
- rG3b9715cb2193: [NFC] Fix typos in Clangd and Clang
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Renaming handleDeclOccurence, handleMacroOccurence and handleModuleOccurence are definitely not NFC because they are public APIs that can be used by downstream projects.
I'm sorry if it broke some donwstream buildbots for the projects. I thought NFC is something that does not change behavior of the code (which is the case in this patch?) so is there something else that can make a patch NFC?
Also, if there is anything I could help with (e.g. submitting patches to some projects you know are affected by this change) please let me know.
In addition to that, NFC is also often used as a way to tag commits that should not cause any problems.
wrt to this change, I don't think anything was done wrong. It even went through review, although often we don't send reviews for NFC changes.
Downstream projects should be ready to update their code when public API changes like this happen, LLVM does not promise to keep a stable public interface in the C++ APIs.