reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
64 Digit = static_cast<char>((Digit < 10) ? '0' + Digit 64 Digit = static_cast<char>((Digit < 10) ? '0' + Digit 64 Digit = static_cast<char>((Digit < 10) ? '0' + Digit 65 : (Upper ? 'A' : 'a') + Digit - 10); 66 Res += appendChar(Buffer, BufferEnd, Digit);