Hi,
I am trying to write a simple program where trying to push_back the elements in to a vector.I am getting an error in the vector file:
bool _Inside(const _Ty *_Ptr) const
{ // test if _Ptr points inside vector
return (_Ptr < this->_Mylast && this->_Myfirst <= _Ptr);
}
How to overcome this problem?