Skip to content

Commit a1621a1

Browse files
jckartermilseman
authored andcommitted
Runtime: Add newline to implicit ObjC entrypoint log message.
See if this clears up buffering issues in CI. rdar://problem/32272992
1 parent 552c833 commit a1621a1

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
@@ -1416,7 +1416,7 @@ void swift_objc_swift3ImplicitObjCEntrypoint(id self, SEL selector,
14161416
"*** %*s:%zu:%zu: implicit Objective-C entrypoint %c[%s %s] "
14171417
"is deprecated and will be removed in Swift 4; "
14181418
"add explicit '@objc' to the declaration to emit the Objective-C "
1419-
"entrypoint in Swift 4 and suppress this message",
1419+
"entrypoint in Swift 4 and suppress this message\n",
14201420
(int)filenameLength, filename, line, column,
14211421
isInstanceMethod ? '-' : '+',
14221422
class_getName([self class]),

0 commit comments

Comments
 (0)