I.e with:
PPIndentWidth = 1
IndentWidth = 4
#ifdef foo #define bar() if (A) { B(); } C(); #endif
Assume ColumnLimit Here: |
IndentPPDirectives: None
#ifdef foo #define bar() \ if (A) { \ B(); \ } \ C(); \ #endif
As opposed to
#ifdef foo #define bar() \ if (A) { \ B(); \ } \ C(); #endif
IndentPPDirectives: AfterHash
#ifdef foo # define bar() \ if (A) { \ B(); \ } \ C(); \ #endif
As opposed to
#ifdef foo # define bar() \ if (A) { \ B(); \ } \ C(); #endif
IndentPPDirectives: BeforeHash
#ifdef foo #define bar() \ if (A) { \ B(); \ } \ C(); \ #endif
As opposed to
#ifdef foo #define bar() \ if (A) { \ B(); \ } \ C(); #endif
You don't need to add this condition.