| 383 | |
| 384 | |
| 385 | TSTRING cNonNarrowableCharEncoder::Decode(TSTRING::const_iterator* pcur, const TSTRING::const_iterator end) const |
| 386 | { |
| 387 | // check preconditions |
| 388 | if ((*pcur) >= end || *(*pcur) != Identifier()) |
| 389 | ThrowAndAssert(eBadDecoderInput()); |
| 390 | |
| 391 | return (cCharEncoderUtil::DecodeHexToChar(pcur, end)); |
| 392 | } |
| 393 | |
| 394 | |
| 395 | TSTRING cNonPrintableCharEncoder::Decode(TSTRING::const_iterator* pcur, const TSTRING::const_iterator end) const |
nothing calls this directly
no test coverage detected