File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
tools/SourceKit/tools/swift-lang Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -575,7 +575,7 @@ class FormatWalker : public SourceEntityWalker {
575
575
};
576
576
577
577
if (auto AE = dyn_cast_or_null<ApplyExpr>(Node.dyn_cast <Expr *>())) {
578
- // PrefixUnaryExpr shouldn't be syntacticly considered as a funtion call
578
+ // PrefixUnaryExpr shouldn't be syntactically considered as a function call
579
579
// for sibling alignment.
580
580
if (!isa<PrefixUnaryExpr>(AE)) {
581
581
collect (AE->getArg ());
Original file line number Diff line number Diff line change @@ -5,6 +5,8 @@ if(NOT SWIFT_SOURCEKIT_USE_INPROC_LIBRARY AND SWIFT_BUILD_STDLIB)
5
5
set (DEPENDS_LIST "sourcekitd-test" )
6
6
7
7
# The build type of swiftlang should agree with stdlib
8
+ # This setting could avoid us adding additional search paths when building
9
+ # executables using SwiftLang.
8
10
set (SWIFT_LANG_LIBRARY_BUILD_TYPES )
9
11
if (SWIFT_BUILD_DYNAMIC_STDLIB )
10
12
list (APPEND SWIFT_LANG_LIBRARY_BUILD_TYPES SHARED )
You can’t perform that action at this time.
0 commit comments