1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 07:13:02 +04:00

compilation with no cuda re factored

This commit is contained in:
Anatoly Baksheev
2010-07-19 09:31:12 +00:00
parent 20e2dc84b0
commit 07825bad1e
15 changed files with 555 additions and 587 deletions
+10 -4
View File
@@ -44,7 +44,13 @@
/* End of file. */
extern "C" void cv::gpu::error( const char *error_string, const char *file, const int line, const char *func)
{
cv::error( cv::Exception(CV_GpuApiCallError, error_string, func, file, line) );
}
namespace cv
{
namespace gpu
{
extern "C" void error(const char *error_string, const char *file, const int line, const char *func)
{
cv::error( cv::Exception(CV_GpuApiCallError, error_string, func, file, line) );
}
}
}