From 89c4bc54d915a8d4ff580b58905cb5edf410e401 Mon Sep 17 00:00:00 2001 From: Ethan Rublee Date: Tue, 23 Nov 2010 00:06:33 +0000 Subject: [PATCH] fix little warning - opencv2/imgproc/types_c.h:235: warning: comma at end of enumerator list --- modules/imgproc/include/opencv2/imgproc/types_c.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/imgproc/include/opencv2/imgproc/types_c.h b/modules/imgproc/include/opencv2/imgproc/types_c.h index 27b7eea60f..f2588bd9da 100644 --- a/modules/imgproc/include/opencv2/imgproc/types_c.h +++ b/modules/imgproc/include/opencv2/imgproc/types_c.h @@ -232,7 +232,7 @@ enum CV_INTER_LINEAR =1, CV_INTER_CUBIC =2, CV_INTER_AREA =3, - CV_INTER_LANCZOS4 =4, + CV_INTER_LANCZOS4 =4 }; /* ... and other image warping flags */ -- GitLab