Im having this exception when i use the class vector:
vector <int64> p;
dsdriver::EngineAdmin ea;
p= ea.getEngineIds();
And EngineAdmin is:
class DSUTIL_EXPORT EngineAdmin {
public:
static vector<int64> getEngineIds() ;
When i use p=ea.getengineIds(); its throw me an exception in xmemory:
void deallocate(pointer _Ptr, size_type)
{ // deallocate object at _Ptr, ignore size
::operator delete(_Ptr);
}
I have NO IDEA whats is happening, somebody could help me? If you want more info, i would love to give it..