| 75 | } |
| 76 | |
| 77 | bool address_has_operator(const wstring &address) { |
| 78 | for (wchar_t c : address) { |
| 79 | if (c == L'+' || c == L'-' || c == L'*' || c == L'/') |
| 80 | return true; |
| 81 | } |
| 82 | return false; |
| 83 | } |
| 84 | |
| 85 | size_t parse_hex_word(const wstring &num) { |
| 86 | if (num.empty()) |