Suppress warning unused parameter
authorLaurentBerger <laurent.berger@univ-lemans.fr>
Thu, 15 Dec 2016 09:51:08 +0000 (10:51 +0100)
committerLaurentBerger <laurent.berger@univ-lemans.fr>
Thu, 15 Dec 2016 09:51:08 +0000 (10:51 +0100)
modules/imgproc/src/colormap.cpp

index 171135e..8d257a8 100644 (file)
@@ -502,7 +502,7 @@ namespace colormap
             this->_lut = c;
         }
         void init(int n) {
-            CV_Error(Error::StsAssert, "unused method in UserColormap.");
+            CV_Error(Error::StsAssert, format("unused method in UserColormap init(%d).",n));
         }
     };