Skip to content

Commit 56a52ae

Browse files
committed
Runtime: Add newline to implicit ObjC entrypoint log message.
See if this clears up buffering issues in CI. rdar://problem/32272992
1 parent 5e31b5b commit 56a52ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/public/runtime/SwiftObject.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1410,7 +1410,7 @@ void swift_objc_swift3ImplicitObjCEntrypoint(id self, SEL selector,
14101410
"*** %*s:%zu:%zu: implicit Objective-C entrypoint %c[%s %s] "
14111411
"is deprecated and will be removed in Swift 4; "
14121412
"add explicit '@objc' to the declaration to emit the Objective-C "
1413-
"entrypoint in Swift 4 and suppress this message",
1413+
"entrypoint in Swift 4 and suppress this message\n",
14141414
(int)filenameLength, filename, line, column,
14151415
isInstanceMethod ? '-' : '+',
14161416
class_getName([self class]),

0 commit comments

Comments
 (0)