Is there a way to add or edit the message thrown by assert? I'd like to use something like
assert(a == b, "A must be equal to B");
Then, the compiler adds line, time and so on...
Is it possible?
|
|
|
A hack I've seen around is to use the
Since |
|||||||||||||
|
|
Another option is to reverse the operands and use the comma operator. You need extra parentheses so the comma isn't treated as a delimiter between the arguments:
(this was copied from above comments, for better visibility) |
|||
|
|
|
assert is a macro/function combination. you can define your own macro/function, using |
|||
|
|
http://www.boost.org/doc/libs/1_51_0/libs/utility/assert.html You could either use that directly or copy Boost's code. Also note Boost assert is header only, so you could just grab that single file if you didn't want to install all of Boost. |
|||
|
|