File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -155,8 +155,7 @@ class SemaHLSL : public SemaBase {
155
155
156
156
// Returns true when D is invalid and a diagnostic was produced
157
157
bool
158
- handleRootSignatureElements (ArrayRef<hlsl::RootSignatureElement> Elements,
159
- SourceLocation Loc);
158
+ handleRootSignatureElements (ArrayRef<hlsl::RootSignatureElement> Elements);
160
159
void handleRootSignatureAttr (Decl *D, const ParsedAttr &AL);
161
160
void handleNumThreadsAttr (Decl *D, const ParsedAttr &AL);
162
161
void handleWaveSizeAttr (Decl *D, const ParsedAttr &AL);
Original file line number Diff line number Diff line change @@ -1066,7 +1066,7 @@ void SemaHLSL::ActOnFinishRootSignatureDecl(
1066
1066
SourceLocation Loc, IdentifierInfo *DeclIdent,
1067
1067
ArrayRef<hlsl::RootSignatureElement> RootElements) {
1068
1068
1069
- if (handleRootSignatureElements (RootElements, Loc ))
1069
+ if (handleRootSignatureElements (RootElements))
1070
1070
return ;
1071
1071
1072
1072
SmallVector<llvm::hlsl::rootsig::RootElement> Elements;
@@ -1082,7 +1082,7 @@ void SemaHLSL::ActOnFinishRootSignatureDecl(
1082
1082
}
1083
1083
1084
1084
bool SemaHLSL::handleRootSignatureElements (
1085
- ArrayRef<hlsl::RootSignatureElement> Elements, SourceLocation Loc ) {
1085
+ ArrayRef<hlsl::RootSignatureElement> Elements) {
1086
1086
// The following conducts analysis on resource ranges to detect and report
1087
1087
// any overlaps in resource ranges.
1088
1088
//
You can’t perform that action at this time.
0 commit comments