From bfb644ac048020a030a13b6865432ebd3c9e329a Mon Sep 17 00:00:00 2001 From: LeonidBeynenson Date: Thu, 21 Feb 2013 20:10:42 +0400 Subject: [PATCH] Changed error message in Algorithm::get. --- modules/core/src/algorithm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/core/src/algorithm.cpp b/modules/core/src/algorithm.cpp index 8d292a3..cebecd0 100644 --- a/modules/core/src/algorithm.cpp +++ b/modules/core/src/algorithm.cpp @@ -611,7 +611,7 @@ static string getErrorMessageForWrongArgumentInGetter(string algoName, string pa if (paramType == Param::BOOLEAN) { - message += "so it should be get as integer, unsigned integer, uint64, boolean, float or double value, "; + message += "so it should be get as integer, unsigned integer, uint64, boolean, unsigned char, float or double value, "; } else if (paramType == Param::INT || paramType == Param::UNSIGNED_INT || paramType == Param::UINT64 || paramType == Param::UCHAR) { -- 2.7.4