diff options
author | Francois Ferrand <thetypz@gmail.com> | 2018-06-11 14:41:26 +0000 |
---|---|---|
committer | Francois Ferrand <thetypz@gmail.com> | 2018-06-11 14:41:26 +0000 |
commit | 6bb103f9facf48253b3a29c37d8870e7abaa7ff5 (patch) | |
tree | 50f10c5216e474a55ddbd1b6cb6d51ba477856ef /lldb/source/Plugins/Language/CPlusPlus/LibStdcppUniquePointer.cpp | |
parent | 7db69cc08aef49192ea86d4fc0fe7210ad2b5e50 (diff) | |
download | bcm5719-llvm-6bb103f9facf48253b3a29c37d8870e7abaa7ff5.tar.gz bcm5719-llvm-6bb103f9facf48253b3a29c37d8870e7abaa7ff5.zip |
clang-format: Introduce BreakInheritanceList option
Summary:
This option replaces the BreakBeforeInheritanceComma option with an
enum, thus introducing a mode where the colon stays on the same line as
constructor declaration:
// When it fits on line:
class A : public B, public C {
...
};
// When it does not fit:
class A :
public B,
public C {
...
};
This matches the behavior of the `BreakConstructorInitializers` option,
introduced in https://reviews.llvm.org/D32479.
Reviewers: djasper, klimek
Reviewed By: djasper
Subscribers: mzeren-vmw, cfe-commits
Differential Revision: https://reviews.llvm.org/D43015
llvm-svn: 334408
Diffstat (limited to 'lldb/source/Plugins/Language/CPlusPlus/LibStdcppUniquePointer.cpp')
0 files changed, 0 insertions, 0 deletions