File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -366,7 +366,7 @@ class alignas(1 << TypeAlignInBits) GenericSignatureImpl final
366
366
// / \param otherSig Another generic signature whose generic parameters are
367
367
// / equivalent to or a subset of the generic parameters in this signature.
368
368
SmallVector<Requirement, 4 > requirementsNotSatisfiedBy (
369
- GenericSignature otherSig);
369
+ GenericSignature otherSig) const ;
370
370
371
371
// / Return the canonical version of the given type under this generic
372
372
// / signature.
Original file line number Diff line number Diff line change @@ -592,7 +592,7 @@ bool GenericSignatureImpl::isRequirementSatisfied(Requirement requirement) {
592
592
}
593
593
594
594
SmallVector<Requirement, 4 > GenericSignatureImpl::requirementsNotSatisfiedBy (
595
- GenericSignature otherSig) {
595
+ GenericSignature otherSig) const {
596
596
SmallVector<Requirement, 4 > result;
597
597
598
598
// If the signatures match by pointer, all requirements are satisfied.
You can’t perform that action at this time.
0 commit comments