File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -294,8 +294,10 @@ class ASTContext final {
294
294
// / OutputBackend for writing outputs.
295
295
llvm::IntrusiveRefCntPtr<llvm::vfs::OutputBackend> OutputBackend;
296
296
297
- // / Set the callback function that is invoked before Swift module importing is performed
298
- void SetPreModuleImportCallback (std::function<void (llvm::StringRef ModuleName, bool IsOverlay)> callback);
297
+ // / Set the callback function that is invoked before Swift module importing is
298
+ // / performed
299
+ void SetPreModuleImportCallback (
300
+ std::function<void (llvm::StringRef ModuleName, bool IsOverlay)> callback);
299
301
300
302
// / If the shared pointer is not a \c nullptr and the pointee is \c true,
301
303
// / all operations working on this ASTContext should be aborted at the next
Original file line number Diff line number Diff line change @@ -629,8 +629,7 @@ ASTContext *ASTContext::get(
629
629
ClangImporterOptions &ClangImporterOpts,
630
630
symbolgraphgen::SymbolGraphOptions &SymbolGraphOpts,
631
631
SourceManager &SourceMgr, DiagnosticEngine &Diags,
632
- llvm::IntrusiveRefCntPtr<llvm::vfs::OutputBackend> OutputBackend
633
- ) {
632
+ llvm::IntrusiveRefCntPtr<llvm::vfs::OutputBackend> OutputBackend) {
634
633
// If more than two data structures are concatentated, then the aggregate
635
634
// size math needs to become more complicated due to per-struct alignment
636
635
// constraints.
@@ -714,7 +713,8 @@ ASTContext::~ASTContext() {
714
713
getImpl ().~Implementation ();
715
714
}
716
715
717
- void ASTContext::SetPreModuleImportCallback (std::function<void (llvm::StringRef ModuleName, bool IsOverlay)> callback) {
716
+ void ASTContext::SetPreModuleImportCallback (
717
+ std::function<void (llvm::StringRef ModuleName, bool IsOverlay)> callback) {
718
718
PreModuleImportCallback = callback;
719
719
}
720
720
You can’t perform that action at this time.
0 commit comments