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