File tree 3 files changed +4
-1
lines changed 3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -143,6 +143,7 @@ class DumpVisitor : public RecursiveASTVisitor<DumpVisitor> {
143
143
TEMPLATE_ARGUMENT_KIND (Declaration);
144
144
TEMPLATE_ARGUMENT_KIND (Template);
145
145
TEMPLATE_ARGUMENT_KIND (TemplateExpansion);
146
+ TEMPLATE_ARGUMENT_KIND (UncommonValue);
146
147
#undef TEMPLATE_ARGUMENT_KIND
147
148
}
148
149
llvm_unreachable (" Unhandled ArgKind enum" );
Original file line number Diff line number Diff line change @@ -1069,6 +1069,7 @@ class ExplicitReferenceCollector
1069
1069
case TemplateArgument::Pack:
1070
1070
case TemplateArgument::Type:
1071
1071
case TemplateArgument::Expression:
1072
+ case TemplateArgument::UncommonValue:
1072
1073
break ; // Handled by VisitType and VisitExpression.
1073
1074
};
1074
1075
return RecursiveASTVisitor::TraverseTemplateArgumentLoc (A);
Original file line number Diff line number Diff line change @@ -152,7 +152,8 @@ class IndexClient : public clangd::SymbolIndex {
152
152
});
153
153
}
154
154
155
- llvm::unique_function<bool (llvm::StringRef) const > indexedFiles() const {
155
+ llvm::unique_function<bool (llvm::StringRef) const >
156
+ indexedFiles() const override {
156
157
// FIXME: For now we always return "false" regardless of whether the file
157
158
// was indexed or not. A possible implementation could be based on
158
159
// the idea that we do not want to send a request at every
You can’t perform that action at this time.
0 commit comments