File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
tools/sourcekitd/lib/Service Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,8 @@ static UIdent getUIDForDependencyKind(bool isClangModule) {
38
38
39
39
class SKIndexDataConsumer : public IndexDataConsumer {
40
40
public:
41
- SKIndexDataConsumer (IndexingConsumer &C, IndexSourceOptions Opts) : impl(C), Opts(Opts) {}
41
+ SKIndexDataConsumer (IndexingConsumer &C, IndexSourceOptions Opts)
42
+ : impl(C), Opts(Opts) {}
42
43
43
44
private:
44
45
void failed (StringRef error) override { impl.failed (error); }
Original file line number Diff line number Diff line change @@ -183,7 +183,8 @@ static SourceKit::Context &getGlobalContext() {
183
183
}
184
184
185
185
static sourcekitd_response_t indexSource(StringRef Filename,
186
- ArrayRef<const char *> Args, IndexSourceOptions Opts);
186
+ ArrayRef<const char *> Args,
187
+ IndexSourceOptions Opts);
187
188
188
189
static sourcekitd_response_t reportDocInfo(llvm::MemoryBuffer *InputBuf,
189
190
StringRef ModuleName,
@@ -2179,7 +2180,8 @@ class SKIndexingConsumer : public IndexingConsumer {
2179
2180
} // end anonymous namespace
2180
2181
2181
2182
static sourcekitd_response_t indexSource (StringRef Filename,
2182
- ArrayRef<const char *> Args, IndexSourceOptions Opts) {
2183
+ ArrayRef<const char *> Args,
2184
+ IndexSourceOptions Opts) {
2183
2185
ResponseBuilder RespBuilder;
2184
2186
SKIndexingConsumer IdxConsumer (RespBuilder);
2185
2187
LangSupport &Lang = getGlobalContext ().getSwiftLangSupport ();
You can’t perform that action at this time.
0 commit comments