File tree Expand file tree Collapse file tree 2 files changed +2
-10
lines changed Expand file tree Collapse file tree 2 files changed +2
-10
lines changed Original file line number Diff line number Diff line change @@ -1414,7 +1414,7 @@ class AbstractGenericSignatureRequest :
1414
1414
1415
1415
public:
1416
1416
// Separate caching.
1417
- bool isCached () const ;
1417
+ bool isCached () const { return true ; }
1418
1418
1419
1419
// / Abstract generic signature requests never have source-location info.
1420
1420
SourceLoc getNearestLoc () const {
@@ -1449,7 +1449,7 @@ class InferredGenericSignatureRequest :
1449
1449
1450
1450
public:
1451
1451
// Separate caching.
1452
- bool isCached () const ;
1452
+ bool isCached () const { return true ; }
1453
1453
1454
1454
// / Inferred generic signature requests don't have source-location info.
1455
1455
SourceLoc getNearestLoc () const {
Original file line number Diff line number Diff line change @@ -8738,14 +8738,6 @@ void GenericSignatureBuilder::verifyGenericSignaturesInModule(
8738
8738
verifyGenericSignature (context, canGenericSig);
8739
8739
}
8740
8740
}
8741
-
8742
- bool AbstractGenericSignatureRequest::isCached () const {
8743
- return true ;
8744
- }
8745
-
8746
- bool InferredGenericSignatureRequest::isCached () const {
8747
- return true ;
8748
- }
8749
8741
8750
8742
// / Check whether the inputs to the \c AbstractGenericSignatureRequest are
8751
8743
// / all canonical.
You can’t perform that action at this time.
0 commit comments