| 1312 | } |
| 1313 | |
| 1314 | static void |
| 1315 | DeserializeLocation(char *pBuffer, size_t zBUfferLength, struct CSourceLocation *pLocation) |
| 1316 | { |
| 1317 | |
| 1318 | ASSERT(pLocation); |
| 1319 | ASSERT(pLocation->mFilename); |
| 1320 | |
| 1321 | snprintf(pBuffer, zBUfferLength, "%s:%" PRIu32 ":%" PRIu32, pLocation->mFilename, pLocation->mLine & (uint32_t)~ACK_REPORTED, pLocation->mColumn); |
| 1322 | } |
| 1323 | |
| 1324 | #ifdef __SIZEOF_INT128__ |
| 1325 | static void |
no test coverage detected