[PATCH] D144709: [clang-format] Improve QualifierAlignment

Alexander Hederstaf via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Tue Feb 28 07:45:46 PST 2023


AlexanderHederstaf added a comment.

Discovered incorrect code generation for  `llvm/include/llvm/ADT/StringMap.h`.

  using base = StringMapIterBase<StringMapConstIterator<ValueTy>,
                                 const StringMapEntry<ValueTy>>;

was converted to, removing two characters. I checked the Token length in InsertQualifierAfter and found that it was not 1. How should I proceed with this particular issue @MyDeveloperDay

  using base = StringMapIterBase<StringMapConstIterator<ValueTy>,
                                 StringMapEntry<ValueTy> const




Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D144709/new/

https://reviews.llvm.org/D144709



More information about the cfe-commits mailing list