This makes clang-format sort using declarations case-sensitive with the
exception that '_' comes just before 'A'. This is better than the current case
insensitive version, because it groups uppercase names in the same namespace
together.
Details
Details
- Reviewers
bkramer - Commits
- rGc47fc31da10e: [clang-format] Sort using-declarations case sensitively with a special case for…
rC317325: [clang-format] Sort using-declarations case sensitively with a special case for…
rL317325: [clang-format] Sort using-declarations case sensitively with a special case for…
Diff Detail
Diff Detail
- Build Status
Buildable 11759 Build 11759: arc lint + arc unit
Event Timeline
Comment Actions
Can we just write out the modified string comparison function instead of keeping both versions of the string around in memory? I'd prefer less state.
Comment Actions
How about this trade-off? I don't really want to re-implement comparison (it makes the code harder to read), so I replaced the state with an explicit computation.