macro function override for rw_assert() function?

2008-04-18 Thread Eric Lemings
Is there an macro function (or similar macro function) that calls the rw_assert() function automatically passing it the __FILE__ and __LINE__ arguments? Thanks, Brad.

RE: macro function override for rw_assert() function?

2008-04-18 Thread Eric Lemings
Oh, it's because of the vaarg list which has only recently been propsed for macro functions, correct? From: Eric Lemings Sent: Friday, April 18, 2008 2:00 PM To: 'dev@stdcxx.apache.org' Subject: macro function override

Re: macro function override for rw_assert() function?

2008-04-18 Thread Martin Sebor
Eric Lemings wrote: Is there an macro function (or similar macro function) that calls the rw_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

Re: macro function override for rw_assert() function?

2008-04-18 Thread Martin Sebor
Travis Vitek wrote: Martin Sebor wrote: Eric Lemings wrote: Is there an macro function (or similar macro function) that calls the rw_assert() function automatically passing it the __FILE__ and __LINE__ arguments? Unfortunately, there isn't. No. rw_assert() is a variable argument function