1b618ccbaSJayanth Othayoth---
2b618ccbaSJayanth OthayothLanguage:        Cpp
3b618ccbaSJayanth Othayoth# BasedOnStyle:  LLVM
4b618ccbaSJayanth OthayothAccessModifierOffset: -2
5b618ccbaSJayanth OthayothAlignAfterOpenBracket: Align
6b618ccbaSJayanth OthayothAlignConsecutiveAssignments: false
7b618ccbaSJayanth OthayothAlignConsecutiveDeclarations: false
8c044958dSJayanth OthayothAlignEscapedNewlines: Right
9*a9779c40SPatrick WilliamsAlignOperands:  Align
10*a9779c40SPatrick WilliamsAlignTrailingComments:
11*a9779c40SPatrick Williams  Kind: Always
12*a9779c40SPatrick Williams  OverEmptyLines: 1
13b618ccbaSJayanth OthayothAllowAllParametersOfDeclarationOnNextLine: true
14*a9779c40SPatrick WilliamsAllowShortBlocksOnASingleLine: Empty
15b618ccbaSJayanth OthayothAllowShortCaseLabelsOnASingleLine: false
16*a9779c40SPatrick WilliamsAllowShortFunctionsOnASingleLine: Empty
17b618ccbaSJayanth OthayothAllowShortIfStatementsOnASingleLine: false
18b618ccbaSJayanth OthayothAllowShortLoopsOnASingleLine: false
19b618ccbaSJayanth OthayothAlwaysBreakAfterReturnType: None
20b618ccbaSJayanth OthayothAlwaysBreakBeforeMultilineStrings: false
21c044958dSJayanth OthayothAlwaysBreakTemplateDeclarations: Yes
22b618ccbaSJayanth OthayothBinPackArguments: true
23b618ccbaSJayanth OthayothBinPackParameters: true
24b618ccbaSJayanth OthayothBraceWrapping:
25c044958dSJayanth Othayoth  AfterCaseLabel:  true
26b618ccbaSJayanth Othayoth  AfterClass:      true
27b618ccbaSJayanth Othayoth  AfterControlStatement: true
28b618ccbaSJayanth Othayoth  AfterEnum:       true
29b618ccbaSJayanth Othayoth  AfterFunction:   true
30b618ccbaSJayanth Othayoth  AfterNamespace:  true
31b618ccbaSJayanth Othayoth  AfterObjCDeclaration: true
32b618ccbaSJayanth Othayoth  AfterStruct:     true
33b618ccbaSJayanth Othayoth  AfterUnion:      true
34c044958dSJayanth Othayoth  AfterExternBlock: true
35b618ccbaSJayanth Othayoth  BeforeCatch:     true
36b618ccbaSJayanth Othayoth  BeforeElse:      true
37b618ccbaSJayanth Othayoth  IndentBraces:    false
38c044958dSJayanth Othayoth  SplitEmptyFunction:   false
39c044958dSJayanth Othayoth  SplitEmptyRecord:     false
40c044958dSJayanth Othayoth  SplitEmptyNamespace:  false
41*a9779c40SPatrick WilliamsBreakAfterAttributes: Never
42b618ccbaSJayanth OthayothBreakBeforeBinaryOperators: None
43b618ccbaSJayanth OthayothBreakBeforeBraces: Custom
44b618ccbaSJayanth OthayothBreakBeforeTernaryOperators: true
45b618ccbaSJayanth OthayothBreakConstructorInitializers: AfterColon
46c044958dSJayanth OthayothBreakInheritanceList: AfterColon
47*a9779c40SPatrick WilliamsBreakStringLiterals: false
48b618ccbaSJayanth OthayothColumnLimit:     80
49b618ccbaSJayanth OthayothCommentPragmas:  '^ IWYU pragma:'
50c044958dSJayanth OthayothCompactNamespaces: false
51b618ccbaSJayanth OthayothConstructorInitializerAllOnOneLineOrOnePerLine: false
52b618ccbaSJayanth OthayothConstructorInitializerIndentWidth: 4
53b618ccbaSJayanth OthayothContinuationIndentWidth: 4
54b618ccbaSJayanth OthayothCpp11BracedListStyle: true
55*a9779c40SPatrick WilliamsDeriveLineEnding: false
56b618ccbaSJayanth OthayothDerivePointerAlignment: false
57b618ccbaSJayanth OthayothPointerAlignment: Left
58b618ccbaSJayanth OthayothDisableFormat:   false
59b618ccbaSJayanth OthayothExperimentalAutoDetectBinPacking: false
60b618ccbaSJayanth OthayothFixNamespaceComments: true
61b618ccbaSJayanth OthayothForEachMacros:   [ foreach, Q_FOREACH, BOOST_FOREACH ]
62b618ccbaSJayanth OthayothIncludeBlocks: Regroup
63b618ccbaSJayanth OthayothIncludeCategories:
64b618ccbaSJayanth Othayoth  - Regex:           '^[<"](gtest|gmock)'
65c044958dSJayanth Othayoth    Priority:        7
66b618ccbaSJayanth Othayoth  - Regex:           '^"config.h"'
67b618ccbaSJayanth Othayoth    Priority:        -1
68c044958dSJayanth Othayoth  - Regex:           '^".*\.h"'
69b618ccbaSJayanth Othayoth    Priority:        1
70c044958dSJayanth Othayoth  - Regex:           '^".*\.hpp"'
71b618ccbaSJayanth Othayoth    Priority:        2
72c044958dSJayanth Othayoth  - Regex:           '^<.*\.h>'
73b618ccbaSJayanth Othayoth    Priority:        3
74c044958dSJayanth Othayoth  - Regex:           '^<.*\.hpp>'
75b618ccbaSJayanth Othayoth    Priority:        4
76c044958dSJayanth Othayoth  - Regex:           '^<.*'
77c044958dSJayanth Othayoth    Priority:        5
78c044958dSJayanth Othayoth  - Regex:           '.*'
79c044958dSJayanth Othayoth    Priority:        6
80b618ccbaSJayanth OthayothIndentCaseLabels: true
81*a9779c40SPatrick WilliamsIndentRequiresClause: true
82b618ccbaSJayanth OthayothIndentWidth:     4
83b618ccbaSJayanth OthayothIndentWrappedFunctionNames: true
84*a9779c40SPatrick WilliamsInsertNewlineAtEOF: true
85*a9779c40SPatrick WilliamsKeepEmptyLinesAtTheStartOfBlocks: false
86*a9779c40SPatrick WilliamsLambdaBodyIndentation: OuterScope
87*a9779c40SPatrick WilliamsLineEnding: LF
88b618ccbaSJayanth OthayothMacroBlockBegin: ''
89b618ccbaSJayanth OthayothMacroBlockEnd:   ''
90b618ccbaSJayanth OthayothMaxEmptyLinesToKeep: 1
91b618ccbaSJayanth OthayothNamespaceIndentation: None
92b618ccbaSJayanth OthayothObjCBlockIndentWidth: 2
93b618ccbaSJayanth OthayothObjCSpaceAfterProperty: false
94b618ccbaSJayanth OthayothObjCSpaceBeforeProtocolList: true
95*a9779c40SPatrick WilliamsPenaltyBreakAssignment: 25
96b618ccbaSJayanth OthayothPenaltyBreakBeforeFirstCallParameter: 19
97b618ccbaSJayanth OthayothPenaltyBreakComment: 300
98b618ccbaSJayanth OthayothPenaltyBreakFirstLessLess: 120
99b618ccbaSJayanth OthayothPenaltyBreakString: 1000
100b618ccbaSJayanth OthayothPenaltyExcessCharacter: 1000000
101b618ccbaSJayanth OthayothPenaltyReturnTypeOnItsOwnLine: 60
102*a9779c40SPatrick WilliamsPenaltyIndentedWhitespace: 0
103*a9779c40SPatrick WilliamsQualifierAlignment: Left
104*a9779c40SPatrick WilliamsReferenceAlignment: Left
105b618ccbaSJayanth OthayothReflowComments:  true
106*a9779c40SPatrick WilliamsRequiresClausePosition: OwnLine
107*a9779c40SPatrick WilliamsRequiresExpressionIndentation: Keyword
108b618ccbaSJayanth OthayothSortIncludes:    true
109b618ccbaSJayanth OthayothSortUsingDeclarations: true
110b618ccbaSJayanth OthayothSpaceAfterCStyleCast: false
111c044958dSJayanth OthayothSpaceAfterTemplateKeyword: true
112b618ccbaSJayanth OthayothSpaceBeforeAssignmentOperators: true
113c044958dSJayanth OthayothSpaceBeforeCpp11BracedList: false
114c044958dSJayanth OthayothSpaceBeforeCtorInitializerColon: true
115c044958dSJayanth OthayothSpaceBeforeInheritanceColon: true
116b618ccbaSJayanth OthayothSpaceBeforeParens: ControlStatements
117c044958dSJayanth OthayothSpaceBeforeRangeBasedForLoopColon: true
118b618ccbaSJayanth OthayothSpaceInEmptyParentheses: false
119b618ccbaSJayanth OthayothSpacesBeforeTrailingComments: 1
120b618ccbaSJayanth OthayothSpacesInAngles:  false
121b618ccbaSJayanth OthayothSpacesInContainerLiterals: true
122b618ccbaSJayanth OthayothSpacesInCStyleCastParentheses: false
123b618ccbaSJayanth OthayothSpacesInParentheses: false
124b618ccbaSJayanth OthayothSpacesInSquareBrackets: false
125c044958dSJayanth OthayothStandard:        Latest
126b618ccbaSJayanth OthayothTabWidth:        4
127b618ccbaSJayanth OthayothUseTab:          Never
128b618ccbaSJayanth Othayoth...
129b618ccbaSJayanth Othayoth
130