From 283087dd56b392dbcbbaa6a80ee94aee69e39254 Mon Sep 17 00:00:00 2001 From: Vadim Pisarevsky Date: Thu, 6 Sep 2012 14:16:18 +0400 Subject: [PATCH] fixed typo (bug #2327) --- doc/tutorials/ios/video_processing/video_processing.rst | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/doc/tutorials/ios/video_processing/video_processing.rst b/doc/tutorials/ios/video_processing/video_processing.rst index 2765c20..b71053d 100644 --- a/doc/tutorials/ios/video_processing/video_processing.rst +++ b/doc/tutorials/ios/video_processing/video_processing.rst @@ -185,8 +185,7 @@ We follow the delegation pattern, which is very common in iOS, to provide access #endif Note that we are using C++ here (cv::Mat). -Important: You have to rename the view controller's extension .m into .mm, so that the compiler compiles it under the assumption of Objective-C++ (Objective-C and C++ mixed). Then, __cplusplus is defined when the compiler is processing the file for C++ code. Therefore, we put our code within a block where __cpluscplus is defined. - +Important: You have to rename the view controller's extension .m into .mm, so that the compiler compiles it under the assumption of Objective-C++ (Objective-C and C++ mixed). Then, __cplusplus is defined when the compiler is processing the file for C++ code. Therefore, we put our code within a block where __cplusplus is defined. Basic video processing -- 2.7.4