1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 07:43:03 +04:00

Fix missing check part (defined(__cplusplus)) in header types_c.h

This commit is contained in:
Etienne Brateau
2018-11-22 01:39:09 +01:00
parent 6b346c92be
commit 736683ce2f
+1 -1
View File
@@ -364,7 +364,7 @@ IplImage;
CV_INLINE IplImage cvIplImage()
{
#if !defined(CV__ENABLE_C_API_CTORS)
#if !(defined(CV__ENABLE_C_API_CTORS) && defined(__cplusplus))
IplImage self = CV_STRUCT_INITIALIZER; self.nSize = sizeof(IplImage); return self;
#else
return _IplImage();