I am getting error: expected unqualified-id before '{' token in the below code snippet. Can some one clear what went wrong? this is a code snippet from opencv2.1 package.
I am getting this when I build the stasm package using make file from the stasm package.
/* Runtime assertion macro */
#define CV_ASSERT( Condition ) \
{ \
if( !(Condition) ) \
CV_ERROR( CV_StsInternal, "Assertion: " #Condition " failed" ); \
}
There’s an extra line between:
that shouldn’t be there. It should be either
or