yet another attempt to fix test failures

This commit is contained in:
Vadim Pisarevsky 2013-10-24 18:00:15 +04:00
parent e14171fd33
commit b1aa4a4913

View File

@ -1893,6 +1893,7 @@ void _OutputArray::create(int dims, const int* sizes, int mtype, int i,
}
m.create(dims, sizes, mtype);
return;
}
CV_Error(Error::StsNotImplemented, "Unknown/unsupported array type");
@ -1946,6 +1947,7 @@ void _OutputArray::release() const
if( k == STD_VECTOR_MAT )
{
((std::vector<Mat>*)obj)->clear();
return;
}
CV_Error(Error::StsNotImplemented, "Unknown/unsupported array type");