added COVAR_ and SORT_ enums to core.hpp; fixed many, many VS2005, VS2010 and MinGW (GCC 4.5.2) warnings

This commit is contained in:
Vadim Pisarevsky
2011-07-19 12:27:07 +00:00
parent 6bb1c07fd4
commit ff5e97c8e4
48 changed files with 443 additions and 385 deletions

View File

@@ -2713,7 +2713,7 @@ double Mat::dot(InputArray _mat) const
{
size_t len = total()*cn;
if( len == (size_t)(int)len )
return func(data, mat.data, len);
return func(data, mat.data, (int)len);
}
const Mat* arrays[] = {this, &mat, 0};