Dev-c++ doesn't recognize __try __except (which I found out are called SEHs), even when I turn Error Handling on in the settings. Does anyone know how to give dev that support, I really don't feel like using a different compiler cause of that now.
This is a discussion on exceptions within the C++ Programming forums, part of the General Programming Boards category; Dev-c++ doesn't recognize __try __except (which I found out are called SEHs), even when I turn Error Handling on in ...
Dev-c++ doesn't recognize __try __except (which I found out are called SEHs), even when I turn Error Handling on in the settings. Does anyone know how to give dev that support, I really don't feel like using a different compiler cause of that now.
I don't see why people think Chuck Norris is so awesome. If he was really as great as they say, he would be over here slamming my head into the keybsk;lah;flksalfksdnlcslcnsldk;acklsd;glfbaskfl
/* When I wrote this, only God and I understood what I was doing... Now, God only knows */
SEH is a Microsoft-specific extension. Dev-C++ uses gnu compilers, which are not Microsoft specific.
My advice would be to eliminate use of SEH; Standard C++ supports - portably - try and catch which functionally give the same capability as __try and __except.
All the buzzt!
CornedBee
"There is not now, nor has there ever been, nor will there ever be, any programming language in which it is the least bit difficult to write bad code."
- Flon's Law