P
Peter Meier
Hello,
I have a question. I have the following construct:
std::vector < std::vector < std::vector< AsMarkerMatchMatrix >> >
m_matchMatrices;
If I run a std::find on that I sometimes get the iterator to be some strange
number like -124224256, although I know there should not be a match. Usually
the iterator points to NULL, if there is no match.
Anybody experienced the problem? MS c++ 7.1
Also I get an "could not deduce template argument" error, if I do not
implement the == operator, although the parent class implements it.
Greetings, Peter
I have a question. I have the following construct:
std::vector < std::vector < std::vector< AsMarkerMatchMatrix >> >
m_matchMatrices;
If I run a std::find on that I sometimes get the iterator to be some strange
number like -124224256, although I know there should not be a match. Usually
the iterator points to NULL, if there is no match.
Anybody experienced the problem? MS c++ 7.1
Also I get an "could not deduce template argument" error, if I do not
implement the == operator, although the parent class implements it.
Greetings, Peter