| 709 | |
| 710 | |
| 711 | CV_IMPL void cvError( int code, const char* func_name, |
| 712 | const char* err_msg, |
| 713 | const char* file_name, int line ) |
| 714 | { |
| 715 | cv::error(cv::Exception(code, err_msg, func_name, file_name, line)); |
| 716 | } |
| 717 | |
| 718 | /* function, which converts int to int */ |
| 719 | CV_IMPL int |
no test coverage detected