| 680 | } |
| 681 | |
| 682 | struct FixedLenByteArray { |
| 683 | FixedLenByteArray() : ptr(NULLPTR) {} |
| 684 | explicit FixedLenByteArray(const uint8_t* ptr) : ptr(ptr) {} |
| 685 | const uint8_t* ptr; |
| 686 | }; |
| 687 | |
| 688 | using FLBA = FixedLenByteArray; |
| 689 |
no outgoing calls
no test coverage detected