I have my wxWidgets client/server application and faced a complicated bug inside wxWidgets network stuff. It's a long story, let's skip it here.
wxWidgets code uses assertion, so I can't catch it as if it was an exception.
Can I suppress assertions while still compiling in debug mode?
Every time assertion happens, there is wxWidget's assertion info window appears, so user needs to press "Continue" or "Abort" button. If I can't catch it (assertion is not an exception), I'd like to suppress it.