| 672 | } |
| 673 | |
| 674 | struct FixedLenByteArray { |
| 675 | FixedLenByteArray() : ptr(NULLPTR) {} |
| 676 | explicit FixedLenByteArray(const uint8_t* ptr) : ptr(ptr) {} |
| 677 | const uint8_t* ptr; |
| 678 | }; |
| 679 | |
| 680 | using FLBA = FixedLenByteArray; |
| 681 |
no outgoing calls
no test coverage detected