From 31ddd98c8ef578254829d69a8f358dbd6a323c44 Mon Sep 17 00:00:00 2001 From: Giles Payne Date: Mon, 10 Aug 2020 20:32:42 +0900 Subject: [PATCH] Fix Objective-C declaration of Mat_to_vector_Point2d --- modules/core/misc/objc/common/Converters.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/core/misc/objc/common/Converters.h b/modules/core/misc/objc/common/Converters.h index 783d9912a4..9a238deb82 100755 --- a/modules/core/misc/objc/common/Converters.h +++ b/modules/core/misc/objc/common/Converters.h @@ -41,7 +41,7 @@ CV_EXPORTS @interface Converters : NSObject + (Mat*)vector_Point2d_to_Mat:(NSArray*)pts NS_SWIFT_NAME(vector_Point2d_to_Mat(_:)); -+ (NSArray*)Mat_to_vector_Point2d:(Mat*)mat NS_SWIFT_NAME(Mat_to_vector_Point2d(_:)); ++ (NSArray*)Mat_to_vector_Point2d:(Mat*)mat NS_SWIFT_NAME(Mat_to_vector_Point2d(_:)); + (Mat*)vector_Point3i_to_Mat:(NSArray*)pts NS_SWIFT_NAME(vector_Point3i_to_Mat(_:));