提交 a70467d7 编写于 作者: I Ilya Lavrenov

removed unnecessary assert

上级 06e981f1
......@@ -2616,11 +2616,16 @@ struct Program::Impl
if( retval >= 0 )
{
errmsg = String(buf);
CV_Error_(Error::StsAssert, ("OpenCL program can not be built: %s", errmsg.c_str()));
printf("OpenCL program can not be built: %s", errmsg.c_str());
}
}
if( handle )
{
clReleaseProgram(handle);
handle = NULL;
}
}
CV_Assert(retval >= 0);
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册