diff options
author | Gregor Jasny <gjasny@googlemail.com> | 2017-03-29 13:32:01 (GMT) |
---|---|---|
committer | Gregor Jasny <gjasny@googlemail.com> | 2017-03-29 13:36:05 (GMT) |
commit | 77139e320c8ec7f92e1298cc57fea7276faceb12 (patch) | |
tree | 8f53ae444ca21b64b7cac32a1af44c7387e376cf /Tests/SwiftMix/ObjCMain.m | |
parent | c03141c04cededf6bf31d51627cd8b29c7668495 (diff) | |
download | CMake-77139e320c8ec7f92e1298cc57fea7276faceb12.zip CMake-77139e320c8ec7f92e1298cc57fea7276faceb12.tar.gz CMake-77139e320c8ec7f92e1298cc57fea7276faceb12.tar.bz2 |
Swift: Simplify mixed test case to make it version agnostic
Issue: #16742
Diffstat (limited to 'Tests/SwiftMix/ObjCMain.m')
-rw-r--r-- | Tests/SwiftMix/ObjCMain.m | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/Tests/SwiftMix/ObjCMain.m b/Tests/SwiftMix/ObjCMain.m index 5a8700c..20f0bf1 100644 --- a/Tests/SwiftMix/ObjCMain.m +++ b/Tests/SwiftMix/ObjCMain.m @@ -1,10 +1,4 @@ #import "SwiftMix-Swift.h" int ObjCMain(int argc, char const* const argv[]) { - if ([SwiftMainClass respondsToSelector:@selector(SwiftMain:argv:)]) { - return [SwiftMainClass SwiftMain:argc argv:argv]; - } - if ([SwiftMainClass respondsToSelector:@selector(SwiftMainWithArgc:argv:)]) { - return [SwiftMainClass SwiftMainWithArgc:argc argv:argv]; - } - return -1; + return [SwiftMainClass SwiftMain]; } |