Updated by Andrey Kamaev about 13 years ago

any.h (include\opencv2\flann) uses size_t as a type, but does not explicitly mention it is the std one. This leads to compilation error when compiling for instance with OpenCL. [[OpenCL]].

solution: explicitly mention size_t is the std one: ::size_t on lines 40 and 48

Back