简体   繁体   中英

disable error popup in visual studio

I keep getting the following error in visual studio:

http://i.stack.imgur.com/qKyk8.png

However if I click continue my application runs perfectly fine, every time I run it it does this. As you can imagine this is incredibly annoying. I have gone through the exception settings to try and find something under runtime, error, runtime_error, std and so on. I was not able to find anything that matched the description of the error. Additionally I have no idea what is causing this to popup in the first place, as how am I supposed to know what is using that memory location?

You can disable it by properly handling the cause of the exception being thrown. Debug your code to find what is causing the exception.

Try going to exception settings, add new C++ exception: std::runtime_error and uncheck it. Or just stop breaking in any C++ exceptions at all.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM