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