-
Notifications
You must be signed in to change notification settings - Fork 313
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for clang_format options version 16.
- Loading branch information
1 parent
8672aa4
commit a789e66
Showing
9 changed files
with
142 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,123 @@ | ||
--- | ||
AccessModifierOffset : -2 | ||
AlignAfterOpenBracket : Align | ||
AlignArrayOfStructures : None | ||
AlignConsecutiveAssignments : Consecutive | ||
AlignConsecutiveBitFields : Consecutive | ||
AlignConsecutiveDeclarations : Consecutive | ||
AlignConsecutiveMacros : Consecutive | ||
AlignEscapedNewlines : Left | ||
AlignOperands : AlignAfterOperator | ||
AlignTrailingComments : | ||
Kind : Always | ||
OverEmptyLines : 0 | ||
AllowAllArgumentsOnNextLine : true | ||
AllowAllParametersOfDeclarationOnNextLine : true | ||
AllowShortBlocksOnASingleLine : Empty | ||
AllowShortCaseLabelsOnASingleLine : true | ||
AllowShortEnumsOnASingleLine : true | ||
AllowShortFunctionsOnASingleLine : Empty | ||
AllowShortIfStatementsOnASingleLine : Never | ||
AllowShortLambdasOnASingleLine : All | ||
AllowShortLoopsOnASingleLine : false | ||
AlwaysBreakAfterReturnType : None | ||
AlwaysBreakBeforeMultilineStrings : true | ||
AlwaysBreakTemplateDeclarations : Yes | ||
BinPackArguments : false | ||
BinPackParameters : false | ||
BitFieldColonSpacing : Both | ||
BraceWrapping : | ||
AfterCaseLabel : true | ||
AfterClass : true | ||
AfterControlStatement : Always | ||
AfterEnum : true | ||
AfterFunction : true | ||
AfterNamespace : true | ||
AfterStruct : true | ||
AfterUnion : true | ||
AfterExternBlock : true | ||
BeforeCatch : true | ||
BeforeElse : true | ||
BeforeLambdaBody : true | ||
BeforeWhile : false | ||
IndentBraces : false | ||
SplitEmptyFunction : true | ||
SplitEmptyRecord : true | ||
SplitEmptyNamespace : true | ||
BreakAfterAttributes: Leave | ||
BreakBeforeBinaryOperators : None | ||
BreakBeforeBraces : Custom | ||
BreakBeforeConceptDeclarations : Always | ||
BreakBeforeInlineASMColon : OnlyMultiline | ||
BreakBeforeTernaryOperators : true | ||
BreakConstructorInitializers : BeforeComma | ||
BreakInheritanceList : BeforeComma | ||
BreakStringLiterals : false | ||
ColumnLimit : 160 | ||
CompactNamespaces : false | ||
ConstructorInitializerIndentWidth : 2 | ||
ContinuationIndentWidth : 2 | ||
Cpp11BracedListStyle : false | ||
EmptyLineAfterAccessModifier : Never | ||
EmptyLineBeforeAccessModifier : LogicalBlock | ||
FixNamespaceComments : true | ||
IncludeBlocks : Regroup | ||
IndentAccessModifiers : false | ||
IndentCaseBlocks : true | ||
IndentCaseLabels : true | ||
IndentExternBlock : true | ||
IndentPPDirectives : AfterHash | ||
IndentRequiresClause : false | ||
IndentWidth : 2 | ||
IndentWrappedFunctionNames : true | ||
InsertBraces : false | ||
InsertNewlineAtEOF : true | ||
IntegerLiteralSeparator : | ||
Binary : 4 | ||
Decimal : 0 | ||
Hex : 2 | ||
HexMinDigits : 6 | ||
KeepEmptyLinesAtTheStartOfBlocks : false | ||
LambdaBodyIndentation : Signature | ||
MaxEmptyLinesToKeep : 1 | ||
NamespaceIndentation : All | ||
PackConstructorInitializers : NextLine | ||
PPIndentWidth : -1 | ||
PointerAlignment : Middle | ||
ReferenceAlignment : Pointer | ||
ReflowComments : true | ||
RemoveBracesLLVM : false | ||
RequiresClausePosition : OwnLine | ||
RequiresExpressionIndentation : Keyword | ||
SeparateDefinitionBlocks : Always | ||
ShortNamespaceLines : 0 | ||
SortIncludes : true | ||
SortUsingDeclarations : true | ||
SpaceAfterCStyleCast : false | ||
SpaceAfterLogicalNot : false | ||
SpaceAfterTemplateKeyword : true | ||
SpaceAroundPointerQualifiers : Both | ||
SpaceBeforeAssignmentOperators : true | ||
SpaceBeforeCaseColon : false | ||
SpaceBeforeCpp11BracedList : false | ||
SpaceBeforeCtorInitializerColon : true | ||
SpaceBeforeInheritanceColon : true | ||
SpaceBeforeParens : ControlStatements | ||
SpaceBeforeRangeBasedForLoopColon : true | ||
SpaceBeforeSquareBrackets : false | ||
SpaceInEmptyBlock : false | ||
SpaceInEmptyParentheses : false | ||
SpacesBeforeTrailingComments : 2 | ||
SpacesInAngles : false | ||
SpacesInCStyleCastParentheses : false | ||
SpacesInConditionalStatement : true | ||
SpacesInContainerLiterals : false | ||
SpacesInLineCommentPrefix : | ||
Minimum : 1 | ||
Maximum : -1 | ||
SpacesInParentheses : true | ||
SpacesInSquareBrackets : false | ||
Standard : Latest | ||
UseCRLF : true | ||
UseTab : Never | ||
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -323,4 +323,4 @@ namespace VULKAN_HPP_NAMESPACE | |
# define VULKAN_HPP_RAII_CREATE_NOEXCEPT | ||
#endif | ||
|
||
#endif | ||
#endif |