Hey,
My code was working great yesterday. I go to submit it and it's got this new error out of nowhere! It is 'class std::vector<long double>' has no member named '_'. It says instantiated from the line
vector <LD> matrix;
and then takes me to some code entitled stl_vector.h. it points me to this
if (this->_._M_finish != this->_M_impl._M_end_of_storage)
{
this->_M_impl.construct(this->_M_impl._M_finish, __x);
++this->_M_impl._M_finish;
}
else
_M_insert_aux(end(), __x);
}
I have no idea what is going on! Why is this happening?? It was all ready to go. Please help!
Thank you