I had the same problem when porting from VS2005 to VS2008. I avoided it using dynamic allocation something like this: std::vector<???> *v; v = new ???; v->push_back(***) This works in both debug and release mode :)
^^
I had the same problem when porting from VS2005 to VS2008. I avoided it using dynamic allocation something like this: std::vector<???> *v; v = new ???; v->push_back(***) This works in both debug and release mode :)
^^
I had the same problem when porting from VS2005 to VS2008. I avoided it using dynamic allocation something like this: std::vector *v; v = new ???; v->push_back(***) This works in both debug and release mode :)
^^