Commit 736683ce authored by Etienne Brateau's avatar Etienne Brateau

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

parent 6b346c92
...@@ -364,7 +364,7 @@ IplImage; ...@@ -364,7 +364,7 @@ IplImage;
CV_INLINE IplImage cvIplImage() 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; IplImage self = CV_STRUCT_INITIALIZER; self.nSize = sizeof(IplImage); return self;
#else #else
return _IplImage(); return _IplImage();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment