| 76 | } |
| 77 | |
| 78 | std::string pair_key(const std::string & left, const std::string & right) { |
| 79 | std::string key = left; |
| 80 | key.push_back('\0'); |
| 81 | key += right; |
| 82 | return key; |
| 83 | } |
| 84 | |
| 85 | uint32_t token_attr_from_json(const engine::io::json::Value & token_config) { |
| 86 | // HF added tokens must be matched as whole tokens during encode even when |
no outgoing calls
no test coverage detected