Re: function pointers



"Tom��������������������������������" wrote:
The only redudant checks I use in my programs are asserts.
May I suggest that's a very dubious practice.
Debug build crashes predictably; Release build (with NDEBUG #define'd) either crashes unpredictably or wanders away mysteriously.
Use asserts for debugging and never for user input. On the API level, your user can be another programmer.
- Ark
.