Skip to content

Commit 8296aa1

Browse files
committed
more comments
1 parent 3a09b73 commit 8296aa1

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

clang/lib/Sema/HLSLExternalSemaSource.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -325,9 +325,9 @@ struct TemplateParameterListBuilder {
325325
Context, // AST context
326326
Builder.Record->getDeclContext(), // DeclContext
327327
SourceLocation(), SourceLocation(),
328-
/*depth=*/0, // Depth in the template parameter list
329-
/*position=*/0, // Position in the template parameter list
330-
/*id=*/nullptr, // Identifier for 'T'
328+
/*D=*/0, // Depth in the template parameter list
329+
/*P=*/0, // Position in the template parameter list
330+
/*Id=*/nullptr, // Identifier for 'T'
331331
/*Typename=*/true, // Indicates this is a 'typename' or 'class'
332332
/*ParameterPack=*/false, // Not a parameter pack
333333
/*HasTypeConstraint=*/false // Has no type constraint
@@ -877,9 +877,9 @@ static ConceptDecl *constructTypedBufferConceptDecl(Sema &S,
877877
IdentifierInfo &ElementTypeII = Context.Idents.get("element_type");
878878
TemplateTypeParmDecl *T = TemplateTypeParmDecl::Create(
879879
Context, NSD->getDeclContext(), DeclLoc, DeclLoc,
880-
/*depth=*/0,
881-
/*position=*/0,
882-
/*id=*/&ElementTypeII,
880+
/*D=*/0,
881+
/*P=*/0,
882+
/*Id=*/&ElementTypeII,
883883
/*Typename=*/true,
884884
/*ParameterPack=*/false);
885885

0 commit comments

Comments
 (0)