We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fb4aa9 commit 570fd78Copy full SHA for 570fd78
interpreter/cling/lib/Interpreter/InterpreterCallbacks.cpp
@@ -148,6 +148,16 @@ namespace cling {
148
return m_Source->FindExternalVisibleDeclsByName(DC, Name);
149
}
150
151
+ void LoadExternalSpecializations(const Decl *D, bool OnlyPartial) override {
152
+ m_Source->LoadExternalSpecializations(D, OnlyPartial);
153
+ }
154
+
155
+ void
156
+ LoadExternalSpecializations(const Decl *D,
157
+ ArrayRef<TemplateArgument> TemplateArgs) override {
158
+ m_Source->LoadExternalSpecializations(D, TemplateArgs);
159
160
161
virtual void completeVisibleDeclsMap(const DeclContext* DC) override {
162
m_Source->completeVisibleDeclsMap(DC);
163
0 commit comments