Eric Lemings wrote:
Is there an macro function (or similar macro function) that calls therw_assert() function automatically passing it the __FILE__ and __LINE__ arguments?
Unfortunately, there isn't. No. rw_assert() is a variable argument function and since C99 varargs macros haven't been introduced into C++ yet not all compilers support them. Martin
