Details
Diff Detail
- Repository
- rC Clang
- Build Status
Buildable 23692 Build 23691: arc lint + arc unit
Event Timeline
LGTM
include/clang/Driver/Job.h | ||
---|---|---|
33 | Both approaches seem equivalent in that case, since we do want the re-export. |
include/clang/Driver/Job.h | ||
---|---|---|
33 | The intent here is to make this look less like the typical "bring this name into the namespace" ane more like "give this a new name", even if the unqualified name is the same. In particular: this no longer matches rg -t h "using llvm::" which is a good way to find such bad decls :-) It's not a big deal, but I think this is a marginal improment. |
cfe/trunk/include/clang/Serialization/GlobalModuleIndex.h | ||
---|---|---|
147 ↗ | (On Diff #169376) | It's preferred to include clang/Basic/LLVM.h instead and use the StringRef in the clang namespace: Otherwise we'd have llvm::StringRef literally everywhere. |
Both approaches seem equivalent in that case, since we do want the re-export.
So not sure we want to change this in the first place. But feel free to keep it too, don't have a strong opinion on this one.