Skip to content

Commit 90a8633

Browse files
authored
Merge pull request #9734 from jckarter/implicit-objc-log-newline
Runtime: Add newline to implicit ObjC entrypoint log message.
2 parents 4654a23 + 56a52ae commit 90a8633

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)