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