So I'm a new user of vscode and I love the IDE and I'm using it for c++ specifically. My problem is that I want to be informed of exactly where a mistake is hence the line number where the program terminated during an error. Basically I got an error like this:
"terminate called after throwing an instance of 'std::out_of_range'
what(): basic_string::at: __n (which is 18446744073709551615) >= this->size() (which is 5)"
It doesn't tell me where the termination occurred I would like to know the last line that was executed to cause this error without needing to debug. If there is any way please let me know.