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) {
3838
3939class SKIndexDataConsumer : public IndexDataConsumer {
4040public:
41- SKIndexDataConsumer (IndexingConsumer &C, IndexSourceOptions Opts) : impl(C), Opts(Opts) {}
41+ SKIndexDataConsumer (IndexingConsumer &C, IndexSourceOptions Opts)
42+ : impl(C), Opts(Opts) {}
4243
4344private:
4445 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() {
183183}
184184
185185static sourcekitd_response_t indexSource(StringRef Filename,
186- ArrayRef<const char *> Args, IndexSourceOptions Opts);
186+ ArrayRef<const char *> Args,
187+ IndexSourceOptions Opts);
187188
188189static sourcekitd_response_t reportDocInfo(llvm::MemoryBuffer *InputBuf,
189190 StringRef ModuleName,
@@ -2179,7 +2180,8 @@ class SKIndexingConsumer : public IndexingConsumer {
21792180} // end anonymous namespace
21802181
21812182static sourcekitd_response_t indexSource (StringRef Filename,
2182- ArrayRef<const char *> Args, IndexSourceOptions Opts) {
2183+ ArrayRef<const char *> Args,
2184+ IndexSourceOptions Opts) {
21832185 ResponseBuilder RespBuilder;
21842186 SKIndexingConsumer IdxConsumer (RespBuilder);
21852187 LangSupport &Lang = getGlobalContext ().getSwiftLangSupport ();
You can’t perform that action at this time.
0 commit comments