| 278 | namespace { |
| 279 | |
| 280 | std::string EncodeInt32(int32_t value) { |
| 281 | return std::string(reinterpret_cast<const char*>(&value), sizeof(value)); |
| 282 | } |
| 283 | |
| 284 | constexpr int32_t kLegacyMin = 100, kLegacyMax = 200; |
| 285 |
no outgoing calls
no test coverage detected