After days of debugging my Windows Mobile application I have came to a conclusion that the error I get is simply caused by std::list
code which I have added.
Just after adding this small piece of code :
std::list<int> x;
x.push_back(234);
My application crushes.
Therefore my question arises : Which of the STL's containers can be used in Windows Mobile and which cannot ?
I have found this question but i do not find it useful for my problem.