1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 15:53:03 +04:00

fixed build without cuda

This commit is contained in:
Andrey Morozov
2010-08-16 08:49:34 +00:00
parent 001bbfb4f9
commit 1ac097ce57
+1 -1
View File
@@ -68,7 +68,7 @@ namespace cv
void GpuMat::release() { throw_nogpu(); }
void MatPL::create(int /*_rows*/, int /*_cols*/, int /*_type*/, int /*type_alloc*/) { throw_nogpu(); }
bool MatPL::can_device_map_to_host() { throw_nogpu(); }
bool MatPL::can_device_map_to_host() { throw_nogpu(); return false; }
void MatPL::release() { throw_nogpu(); }
}