| 82 | } |
| 83 | |
| 84 | bool assertFunction(const Location& _location, uint32_t _skip, const char* _format, ...) |
| 85 | { |
| 86 | va_list argList; |
| 87 | va_start(argList, _format); |
| 88 | const bool result = s_assertHandler(_location, _skip + 1 /* skip self */, _format, argList); |
| 89 | va_end(argList); |
| 90 | |
| 91 | return result; |
| 92 | } |
| 93 | |
| 94 | void swap(void* _a, void* _b, size_t _numBytes) |
| 95 | { |
no outgoing calls
no test coverage detected