From: Mark de Wever Date: Wed, 15 Sep 2021 16:29:22 +0000 (+0200) Subject: [NFC][libc++] Update clang-format style. X-Git-Tag: upstream/15.0.7~30578 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=15dfe783406241f9c17c3552b0723441fa68174f;p=platform%2Fupstream%2Fllvm.git [NFC][libc++] Update clang-format style. Changes the style as requested by @ldionne in D103368. Reviewed By: ldionne, #libc, Quuxplusone Differential Revision: https://reviews.llvm.org/D109835 --- diff --git a/libcxx/.clang-format b/libcxx/.clang-format index cfa0c28..4598f60 100644 --- a/libcxx/.clang-format +++ b/libcxx/.clang-format @@ -11,6 +11,9 @@ PointerAlignment: Left SortIncludes: false ReflowComments: false +# libc++'s preferred indentions of preprocessor statements. +IndentPPDirectives: AfterHash + # libc++ has some long names so we need more than the 80 column limit imposed by LLVM style, for sensible formatting ColumnLimit: 120 ---