ASSERT vs. ATLASSERT vs. assert

assert, c++, mfc

Solution

No. The MFC version just includes an easy to debug break point.

Problem

I am refactoring some MFC code that is littered with `ASSERT` statements, and in preparation for a future Linux port I want to replace them with the standard `assert`. Are there any significant differences between the two implementations that people know of that could bite me on the backside? Similarly, I have also come across some code that uses `ATLASSERT` which I would also like to replace.

Original source

Related problems