[PATCH] D146101: [clang-format] Add DesignatedInitializerIndentWidth option.
Jon Phillips via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri Mar 31 04:16:32 PDT 2023
jp4a50 added inline comments.
================
Comment at: clang/docs/tools/dump_format_style.py:72
- subtype, napplied = re.subn(r'^std::vector<(.*)>$', r'\1', typestr)
- if napplied == 1:
- return 'List of ' + pluralize(to_yaml_type(subtype))
+ match = re.match(r'std::vector<(.*)>$', typestr)
+ if match:
----------------
I changed this from `subn` to `match` here since it's just a simpler way of expressing the same thing.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D146101/new/
https://reviews.llvm.org/D146101
More information about the cfe-commits
mailing list