OpenCV4Android 'size_t' is ambiguous ' Candidates are: '‘问题解决

he fix would be to either:
    - delete the using directive, and instead use using declarations, e.g.
using stlsoft::explicit_cast;
    - explicitly qualify the size_t and ptrdiff_t types when you use them,
e.g.

  将size_t s改为 ::size_t s;

  参见http://www.digitalmars.com/d/archives/c++/stlsoft/Ambiguous_Symbol_size_t_973.html

你可能感兴趣的:(OpenCV4Android 'size_t' is ambiguous ' Candidates are: '‘问题解决)