I have two projects
- ProjectA
- ProjectB
I have a function in project B
void ProjectB::getData (std::vector<double>& vertexList)
{
vertexList= mVertexList; // Code crash here in debug mode
}When I call this getData function from ProjectA. Code crash while assigning the vector.
It works fine in Release mode, but fails in Debug mode.
Platform Toolset used for both projects is v100