| 43 | |
| 44 | namespace detail { |
| 45 | const char *GetCheckMessage(char *buf, int bufsize) |
| 46 | { |
| 47 | NVCV_ASSERT(buf != nullptr); |
| 48 | (void)buf; |
| 49 | (void)bufsize; |
| 50 | |
| 51 | return ""; |
| 52 | } |
| 53 | |
| 54 | char *GetCheckMessage(char *buf, int bufsize, const char *fmt, ...) |
| 55 | { |
nothing calls this directly
no outgoing calls
no test coverage detected