fix compilation without CUDA
authorVladislav Vinogradov <vlad.vinogradov@itseez.com>
Tue, 13 Jan 2015 07:25:34 +0000 (10:25 +0300)
committerVladislav Vinogradov <vlad.vinogradov@itseez.com>
Tue, 13 Jan 2015 15:03:57 +0000 (18:03 +0300)
modules/cudafeatures2d/src/fast.cpp

index cb22ea5..2095ef7 100644 (file)
@@ -47,7 +47,7 @@ using namespace cv::cuda;
 
 #if !defined (HAVE_CUDA) || defined (CUDA_DISABLER)
 
-Ptr<FastFeatureDetector> cv::cuda::FastFeatureDetector::create(int, bool, int, int) { throw_no_cuda(); return Ptr<FastFeatureDetector>(); }
+Ptr<cv::cuda::FastFeatureDetector> cv::cuda::FastFeatureDetector::create(int, bool, int, int) { throw_no_cuda(); return Ptr<cv::cuda::FastFeatureDetector>(); }
 
 #else /* !defined (HAVE_CUDA) */