File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -48,16 +48,16 @@ class DebuggerClient {
48
48
// / be consulted first. Return true if results have been added
49
49
// / to RV.
50
50
// / FIXME: I don't think this ever does anything useful.
51
- virtual bool lookupOverrides (Identifier Name, DeclContext *DC,
51
+ virtual bool lookupOverrides (DeclBaseName Name, DeclContext *DC,
52
52
SourceLoc Loc, bool IsTypeLookup,
53
53
ResultVector &RV) = 0;
54
-
54
+
55
55
// / This is the second time DebuggerClient is consulted:
56
56
// / after all names in external Modules are checked, the client
57
57
// / gets a chance to add names to the list of candidates that
58
- // / have been found in the external module lookup.
58
+ // / have been found in the external module lookup.
59
59
60
- virtual bool lookupAdditions (Identifier Name, DeclContext *DC,
60
+ virtual bool lookupAdditions (DeclBaseName Name, DeclContext *DC,
61
61
SourceLoc Loc, bool IsTypeLookup,
62
62
ResultVector &RV) = 0;
63
63
Original file line number Diff line number Diff line change @@ -108,13 +108,13 @@ class NullDebuggerClient : public DebuggerClient {
108
108
return false ;
109
109
}
110
110
void didGlobalize (Decl *D) override {}
111
- bool lookupOverrides (Identifier Name, DeclContext *DC,
111
+ bool lookupOverrides (DeclBaseName Name, DeclContext *DC,
112
112
SourceLoc Loc, bool IsTypeLookup,
113
113
ResultVector &RV) override {
114
114
return false ;
115
115
}
116
116
117
- bool lookupAdditions (Identifier Name, DeclContext *DC,
117
+ bool lookupAdditions (DeclBaseName Name, DeclContext *DC,
118
118
SourceLoc Loc, bool IsTypeLookup,
119
119
ResultVector &RV) override {
120
120
return false ;
You can’t perform that action at this time.
0 commit comments