mirror of
git://sourceware.org/git/libabigail.git
synced 2024-12-16 15:04:46 +00:00
dfd2c2d562
This is mostly seen for nested templates like std::pair<int, std::vector<int> > vs. std::pair<int, std::vector<int>> ^^^ ^^ * .clang-format: Set C++11 standard for formatting. Signed-off-by: Matthias Maennich <maennich@google.com>
20 lines
536 B
YAML
20 lines
536 B
YAML
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
---
|
|
BasedOnStyle: GNU
|
|
Standard: c++11
|
|
AlignConsecutiveDeclarations: true
|
|
AlwaysBreakAfterReturnType: All
|
|
BreakConstructorInitializers: BeforeColon
|
|
ConstructorInitializerAllOnOneLineOrOnePerLine: true
|
|
ConstructorInitializerIndentWidth: 2
|
|
ContinuationIndentWidth: 2
|
|
BinPackParameters: false
|
|
BreakStringLiterals: false
|
|
PointerAlignment: Left
|
|
SortUsingDeclarations: false
|
|
SpaceBeforeParens: ControlStatements
|
|
TabWidth: 8
|
|
UseTab: Always
|
|
BreakBeforeBinaryOperators: NonAssignment
|
|
---
|