Skip to content

Commit 1f127a3

Browse files
committed
Merge remote-tracking branch 'origin/master' into master-next
2 parents f5d7e7a + 275be44 commit 1f127a3

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

lib/IDE/Formatting.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -575,7 +575,7 @@ class FormatWalker : public SourceEntityWalker {
575575
};
576576

577577
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
579579
// for sibling alignment.
580580
if (!isa<PrefixUnaryExpr>(AE)) {
581581
collect(AE->getArg());

tools/SourceKit/tools/swift-lang/CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ if(NOT SWIFT_SOURCEKIT_USE_INPROC_LIBRARY AND SWIFT_BUILD_STDLIB)
55
set(DEPENDS_LIST "sourcekitd-test")
66

77
# 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.
810
set(SWIFT_LANG_LIBRARY_BUILD_TYPES)
911
if(SWIFT_BUILD_DYNAMIC_STDLIB)
1012
list(APPEND SWIFT_LANG_LIBRARY_BUILD_TYPES SHARED)

0 commit comments

Comments
 (0)