[PATCH] D137181: [clang-format] Don't use 'PPIndentWidth' inside multi-line macros

Noah Goldstein via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Mon Nov 7 21:58:10 PST 2022


goldstein.w.n added a comment.

In D137181#3911602 <https://reviews.llvm.org/D137181#3911602>, @owenpan wrote:

> In D137181#3911005 <https://reviews.llvm.org/D137181#3911005>, @sstwcw wrote:
>
>> Here is one problem:
>>
>>   clang-format -style='{IndentPPDirectives: BeforeHash, PPIndentWidth: 1, IndentWidth: 4, IndentCaseLabels: true}'
>>   
>>   actual:
>>   #define X                                                                      \
>>    switch (x) {                                                                  \
>>        case 0:                                                                   \
>>         break;                                                                   \
>>        default:                                                                  \
>>         break;                                                                   \
>>    }
>>   
>>   expected:
>>   #define X                                                                      \
>>    switch (x) {                                                                  \
>>        case 0:                                                                   \
>>            break;                                                                \
>>        default:                                                                  \
>>            break;                                                                \
>>    }
>
> Actually, the expected should be:
>
>   #define X                                                                         \
>       switch (x) {                                                                  \
>           case 0:                                                                   \
>               break;                                                                \
>           default:                                                                  \
>               break;                                                                \
>       }

Was able to fix this, will post new code with a test for it.


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D137181



More information about the cfe-commits mailing list