Steve has an interesting post about C++ error handling.
At least your codebase, Steve, isn’t full of stuff like this.
catch (...)
{
ASSERT(false);
}
Steve has an interesting post about C++ error handling.
At least your codebase, Steve, isn’t full of stuff like this.
catch (...)
{
ASSERT(false);
}
Well, the project to which I referred in the blog post didn’t, but that’s because it is a small one-off utility for my own uses. But as to the application for which I’m paid to work on, who says it isn’t?