# | Line 24 | Line 24 | Hexadecimal::Hexadecimal(const ext::Stri | |
---|---|---|
24 | bytes.InsertLast(0); | |
25 | ||
26 | bytes.Last() |= hex(string[0]); | |
27 | < | bytes.Last() |= signed_ && bytes.Last() < 8 ? 0xF0 : 0; |
27 | > | bytes.Last() |= signed_ && bytes.Last() > 7 ? 0xF0 : 0; |
28 | } | |
29 | } | |
30 |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |