[PATCH] D139786: [clang-format] AllowShortRequiresExpressionOnASingleLine

Zhikai Zeng via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Mon Dec 12 06:22:40 PST 2022


Backl1ght added a comment.

I just find out I miss one case like below

  template<typename T>
  concept c = requires(T x) { { x + 1 } -> std::same_as<int>; };

Since I split AllowShortRequiresExpressionOnASingleLine and AllowShortCompoundRequirementOnASingleLine into two pathes, I can not fix this until AllowShortCompoundRequirementOnASingleLine got merged.


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

https://reviews.llvm.org/D139786



More information about the cfe-commits mailing list