| 21 | namespace boost |
| 22 | { |
| 23 | void assertion_failed(char const *expr, char const *function, char const *file, long line) |
| 24 | { |
| 25 | ::assertion_failed_msg_helper(expr, "", function, file, line); |
| 26 | } |
| 27 | void assertion_failed_msg( |
| 28 | char const *expr, char const *msg, char const *function, char const *file, long line) |
| 29 | { |
nothing calls this directly
no test coverage detected