Skip to content

Commit d770236

Browse files
committed
clang format
1 parent 80d2d25 commit d770236

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

clang/lib/Sema/HLSLExternalSemaSource.cpp

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -358,8 +358,8 @@ struct TemplateParameterListBuilder {
358358
structure is what we're trying to construct below, specifically the
359359
CSE portion.
360360
*/
361-
ConceptSpecializationExpr *constructConceptSpecializationExpr(Sema &S,
362-
ConceptDecl *CD) {
361+
ConceptSpecializationExpr *
362+
constructConceptSpecializationExpr(Sema &S, ConceptDecl *CD) {
363363
ASTContext &Context = S.getASTContext();
364364
SourceLocation Loc = Builder.Record->getBeginLoc();
365365
DeclarationNameInfo DNI(CD->getDeclName(), Loc);
@@ -582,8 +582,9 @@ static BuiltinTypeDeclBuilder setupBufferType(CXXRecordDecl *Decl, Sema &S,
582582
.addDefaultHandleConstructor(S, RC);
583583
}
584584

585-
BinaryOperator *constructSizeOfLEQ16Expr(ASTContext &Context, SourceLocation NameLoc,
586-
TemplateTypeParmDecl *T) {
585+
BinaryOperator *constructSizeOfLEQ16Expr(ASTContext &Context,
586+
SourceLocation NameLoc,
587+
TemplateTypeParmDecl *T) {
587588
// Obtain the QualType for 'unsigned long'
588589
QualType UnsignedLongType = Context.UnsignedLongTy;
589590

@@ -619,7 +620,7 @@ BinaryOperator *constructSizeOfLEQ16Expr(ASTContext &Context, SourceLocation Nam
619620
}
620621

621622
Expr *constructTypedBufferConstraintExpr(Sema &S, SourceLocation NameLoc,
622-
TemplateTypeParmDecl *T) {
623+
TemplateTypeParmDecl *T) {
623624
ASTContext &Context = S.getASTContext();
624625

625626
// first get the "sizeof(T) <= 16" expression, as a binary operator

0 commit comments

Comments
 (0)