I am getting the following error message:
terminate called after throwing an instance of 'std::out_of_range'
what(): vector::_M_range_check
Aborted
It appears that I'm trying to read past the end of a vector somewhere in my code. The error message doesn't give me a whole lot of information about where the problem occurred and checking all of the vectors in my code manually is very tedious.
Is there a quick way to identify which vector caused this problem and which line in the code it occurred?