Summary:
This change adds missing releasenotes for commit rL319024
https://reviews.llvm.org/rL319024
Patch by Krzysztof Kapusta
Reviewers: sylvestre.ledru
Reviewed By: sylvestre.ledru
Differential Revision: https://reviews.llvm.org/D40827
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@319748
91177308-0d34-0410-b5e6-
96231b3b80d8
* Option -verbose added to the command line.
Shows the list of processed files.
+* Option *IncludeBlocks* added to merge and regroup multiple ``#include`` blocks during sorting.
+
+ +-------------------------+-------------------------+-------------------------+
+ | Before (Preserve) | Merge | Regroup |
+ +=========================+=========================+=========================+
+ | .. code-block:: c++ | .. code-block:: c++ | .. code-block:: c++ |
+ | | | |
+ | #include "b.h" | #include "a.h" | #include "a.h" |
+ | | #include "b.h" | #include "b.h" |
+ | #include "a.b" | #include <lib/main.h> | |
+ | #include <lib/main.h> | | #include <lib/main.h> |
+ +-------------------------+-------------------------+-------------------------+
+
libclang
--------