| 1283 | |
| 1284 | template <typename T> |
| 1285 | static std::string EncodeValue(const T& val) { |
| 1286 | return std::string(reinterpret_cast<const char*>(&val), sizeof(val)); |
| 1287 | } |
| 1288 | static std::string EncodeValue(const FLBA& val, int length = sizeof(uint16_t)) { |
| 1289 | return std::string(reinterpret_cast<const char*>(val.ptr), length); |
| 1290 | } |
no outgoing calls
no test coverage detected