| | | | --- | --- | | Bugzilla Link | [36019](https://llvm.org/bz36019) | | Version | trunk | | OS | All | | CC | @hartwork | | Fixed by commit(s) | rL356613 | ## Extended Description Currently `IndentPPDirectives` can have values `None`: ``` #ifdef FOO #define BAR #endif ``` or `AfterHash`: ``` #ifdef FOO # define BAR #endif ``` I am suggesting to also add BeforeHash: ``` #ifdef FOO #define BAR #endif ```