From f02eca0f3feffc5e1afb92eeb4cfc23b9f28aa25 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bj=C3=B6rn=20Sch=C3=A4pers?= Date: Mon, 25 Jan 2021 20:54:17 +0100 Subject: [PATCH] [clang-format] [NFC] Rerun dump_format_style.py --- clang/docs/ClangFormatStyleOptions.rst | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/clang/docs/ClangFormatStyleOptions.rst b/clang/docs/ClangFormatStyleOptions.rst index f6ff571..c12ecf4 100644 --- a/clang/docs/ClangFormatStyleOptions.rst +++ b/clang/docs/ClangFormatStyleOptions.rst @@ -2360,14 +2360,15 @@ the configuration (without a prefix: ``Auto``). When ``true``, includes are sorted in an alphabetical fashion with case used as a tie-breaker. + .. code-block:: c++ - false: true: - #include "A/B.h" vs. #include "A/B.h" - #include "A/b.h" #include "A/b.h" - #include "B/A.h" #include "a/b.h" - #include "B/a.h" #include "B/A.h" - #include "a/b.h" #include "B/a.h" + false: true: + #include "A/B.h" vs. #include "A/B.h" + #include "A/b.h" #include "A/b.h" + #include "B/A.h" #include "a/b.h" + #include "B/a.h" #include "B/A.h" + #include "a/b.h" #include "B/a.h" This option is off by default. -- 2.7.4